Skip to content

Commit

Permalink
fix: disappearance of options on mobile filter (#934)
Browse files Browse the repository at this point in the history
  • Loading branch information
FrantisekMichalSebestyen authored Dec 15, 2023
1 parent a90b452 commit 7ff8af6
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions resources/views/frontend/catalog-new/index-new.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ class="tw-pb-2"
</div>
@endslot
</x-filter.disclosure_view>
<x-filter.disclosure_view v-if="dc.view === 'author'"
<x-filter.disclosure_view v-else-if="dc.view === 'author'"
v-on:close="dc.close">
@slot('header')
<x-filter.view_header_button
Expand Down Expand Up @@ -517,7 +517,7 @@ class="tw-inset-x-0 tw-box-border tw-flex tw-min-h-0 tw-flex-1 tw-flex-col tw-ov
</div>
@endslot
</x-filter.disclosure_view>
<x-filter.disclosure_view v-if="dc.view === 'work_type'"
<x-filter.disclosure_view v-else-if="dc.view === 'work_type'"
v-on:close="dc.close">
@slot('header')
<x-filter.view_header_button
Expand Down Expand Up @@ -549,7 +549,7 @@ class="tw-inset-x-0 tw-box-border tw-flex tw-min-h-0 tw-flex-1 tw-flex-col tw-ov
@endslot
</x-filter.disclosure_view>
<x-filter.disclosure_view
v-if="dc.view === 'object_type'"
v-else-if="dc.view === 'object_type'"
v-on:close="dc.close">
@slot('header')
<x-filter.view_header_button
Expand Down Expand Up @@ -580,7 +580,7 @@ class="tw-inset-x-0 tw-box-border tw-flex tw-min-h-0 tw-flex-1 tw-flex-col tw-ov
</div>
@endslot
</x-filter.disclosure_view>
<x-filter.disclosure_view v-if="dc.view === 'tag'"
<x-filter.disclosure_view v-else-if="dc.view === 'tag'"
v-on:close="dc.close">
@slot('header')
<x-filter.view_header_button
Expand Down Expand Up @@ -611,7 +611,7 @@ class="tw-inset-x-0 tw-box-border tw-flex tw-min-h-0 tw-flex-1 tw-flex-col tw-ov
</div>
@endslot
</x-filter.disclosure_view>
<x-filter.disclosure_view v-if="dc.view === 'gallery'"
<x-filter.disclosure_view v-else-if="dc.view === 'gallery'"
v-on:close="dc.close">
@slot('header')
<x-filter.view_header_button
Expand Down Expand Up @@ -639,7 +639,7 @@ class="tw-inset-x-0 tw-box-border tw-flex tw-min-h-0 tw-flex-1 tw-flex-col tw-ov
</x-filter.search_options>
@endslot
</x-filter.disclosure_view>
<x-filter.disclosure_view v-if="dc.view === 'technique'"
<x-filter.disclosure_view v-else-if="dc.view === 'technique'"
v-on:close="dc.close">
@slot('header')
<x-filter.view_header_button
Expand Down Expand Up @@ -670,7 +670,7 @@ class="tw-inset-x-0 tw-box-border tw-flex tw-min-h-0 tw-flex-1 tw-flex-col tw-ov
</div>
@endslot
</x-filter.disclosure_view>
<x-filter.disclosure_view v-if="dc.view === 'topic'"
<x-filter.disclosure_view v-else-if="dc.view === 'topic'"
v-on:close="dc.close">
@slot('header')
<x-filter.view_header_button
Expand Down Expand Up @@ -701,7 +701,7 @@ class="tw-inset-x-0 tw-box-border tw-flex tw-min-h-0 tw-flex-1 tw-flex-col tw-ov
</div>
@endslot
</x-filter.disclosure_view>
<x-filter.disclosure_view v-if="dc.view === 'medium'"
<x-filter.disclosure_view v-else-if="dc.view === 'medium'"
v-on:close="dc.close">
@slot('header')
<x-filter.view_header_button
Expand Down

0 comments on commit 7ff8af6

Please sign in to comment.