Skip to content

Commit

Permalink
fixed linting mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
CommanderStorm committed May 6, 2024
1 parent f7cdb07 commit 61748e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion webclient/components/AppSearchBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,9 @@ watchEffect(() => {
>
<MagnifyingGlassIcon class="text-zinc-800 my-auto h-6 w-6 ps-2" />
<textarea
cols="1"
id="search"
v-model="query"
cols="1"
rows="1"
:title="t('input.aria-searchlabel')"
aria-autocomplete="both"
Expand Down
2 changes: 1 addition & 1 deletion webclient/components/SearchResultItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ type RoomEntry = components["schemas"]["RoomEntry"];
<div class="text-zinc-600 flex flex-col gap-0.5">
<div class="flex flex-col">
<div
class="flex flex-row"
v-if="(item.type === 'room' || item.type === 'virtual_room' || item.type === 'poi') && item.parsed_id"
class="flex flex-row"
>
<ChevronDownIcon class="mt-0.5 h-4 w-4" />
<span v-html="item.parsed_id" />
Expand Down

0 comments on commit 61748e3

Please sign in to comment.