Merge pull request #712 from jellyfin/fix/aaaaaaaaaa

fix(library view): fix #710 unable to change library type if library …
This commit is contained in:
Cameron 2021-02-11 18:35:44 +00:00 committed by GitHub
commit 3add439e41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,7 +12,7 @@
<type-button
v-if="hasViewTypes"
:type="collectionInfo.CollectionType"
:disabled="loading || !items.length"
:disabled="loading"
@change="onChangeType"
/>
<v-divider
@ -29,7 +29,7 @@
<filter-button
v-if="isSortable"
:collection-info="collectionInfo"
:disabled="loading || !items.length"
:disabled="loading"
:items-type="viewType"
@change="onChangeFilter"
/>