Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
zAlweNy26 committed Mar 26, 2024
1 parent 90a3e49 commit ee24af2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/views/EmbeddersView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ watchDeep(
<SelectBox
v-model="selectedEmbedder"
:list="getAvailableEmbedders.map(p => ({ label: p.humanReadableName ?? p.title, value: p.title }))"
@update="e => updateProperties(e.value)" />
@update="(e: any) => updateProperties(e.value)" />
<div class="flex grow flex-col gap-4">
<div class="flex items-center gap-1 font-medium">
<a v-if="currentSchema?.link" :href="currentSchema.link" target="_blank" class="btn btn-circle btn-primary btn-xs">
Expand Down
2 changes: 1 addition & 1 deletion src/views/ProvidersView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ watchDeep(
<SelectBox
v-model="selectedProvider"
:list="getAvailableProviders.map(p => ({ label: p.humanReadableName ?? p.title, value: p.title }))"
@update="e => updateProperties(e.value)" />
@update="(e: any) => updateProperties(e.value)" />
<div class="flex grow flex-col gap-4">
<div class="flex items-center gap-1 font-medium">
<a v-if="currentSchema?.link" :href="currentSchema.link" target="_blank" class="btn btn-circle btn-xs text-primary">
Expand Down

0 comments on commit ee24af2

Please sign in to comment.