Skip to content

Commit

Permalink
chore: format
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohamed-Hacene committed Nov 28, 2024
1 parent 758ed2a commit 515de01
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions frontend/src/lib/components/Forms/AutocompleteSelect.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -122,14 +122,14 @@
let:option
{allowUserOptions}
>
{#if option.suggested}
<span class="text-indigo-600">{option.label}</span>
<span class="text-sm text-gray-500"> (suggested)</span>
{:else if translateOptions && option.label}
{safeTranslate(option.label)}
{:else}
{option.label || option}
{/if}
{#if option.suggested}
<span class="text-indigo-600">{option.label}</span>
<span class="text-sm text-gray-500"> (suggested)</span>
{:else if translateOptions && option.label}
{safeTranslate(option.label)}
{:else}
{option.label || option}
{/if}
</MultiSelect>
</div>
{#if helpText}
Expand Down

0 comments on commit 515de01

Please sign in to comment.