Skip to content

Commit

Permalink
SKeske
Browse files Browse the repository at this point in the history
  • Loading branch information
jyhein committed Oct 8, 2024
1 parent 70dda25 commit 59d290a
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions src/components/Form/fields/FieldBaseAutosuggest.vue
Original file line number Diff line number Diff line change
Expand Up @@ -153,12 +153,7 @@
<li>
{{ suggestion.label }}
</li>
<li
v-if="
suggestion.value.uri &&
suggestion.value.uri.match(/^http/)
"
>
<li v-if="suggestion.value.uri?.match(/^http/)">
<a :href="suggestion.value.uri" target="_blank">
{{ suggestion.value.uri }}
</a>
Expand All @@ -167,8 +162,9 @@
{{ suggestion.value.uri }}
</li>
<li
v-for="extraItem in suggestion.extraItems ?? {}"
:key="extraItem"
v-for="(extraItem, extraItemKey) in suggestion.extraItems ??
{}"
:key="extraItemKey"
>
{{ extraItem }}
</li>
Expand Down

0 comments on commit 59d290a

Please sign in to comment.