Skip to content

Commit

Permalink
chore: ignore DS_Store (#67)
Browse files Browse the repository at this point in the history
fix: keywords mobile filter
  • Loading branch information
FrantisekMichalSebestyen authored Sep 19, 2024
1 parent c4d95a3 commit 4f3b201
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ npm-debug.log
yarn-error.log
/.idea
/.vscode
**/.DS_Store
4 changes: 2 additions & 2 deletions resources/views/artworks/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ class="text-red-500 h-6 w-6 border border-neutral-300 checked:border-none mr-2 f
<search.filter-search :options="options" placeholder="Zadajte kľúčové slovo"
v-slot="{ searchResults }">
<div v-for="option, index in options" :key="option.value" class="flex">
<input type="checkbox" :id="'filters.keywords.' + index" name="categories"
<input type="checkbox" :id="'filters.keywords.' + index" name="keywords"
:value="option.value" @change="onCheckboxChange"
:checked="query.categories.includes(option.value)"
:checked="query.keywords.includes(option.value)"
class="text-red-500 h-6 w-6 border border-neutral-300 checked:border-none mr-2 focus:ring-0" />
<label :for="'filters.keywords.' + index" class="whitespace-nowrap">
@{{ option.label }} <span class="font-semibold">(@{{ option.count }})</span>
Expand Down

0 comments on commit 4f3b201

Please sign in to comment.