diff --git a/client/components/app/Appbar.vue b/client/components/app/Appbar.vue index 0071979c..6eef4350 100644 --- a/client/components/app/Appbar.vue +++ b/client/components/app/Appbar.vue @@ -16,11 +16,11 @@ Update is available! Check release notes for v{{ latestVersion }} --> - + upload - + settings @@ -96,6 +96,9 @@ export default { userCanDelete() { return this.$store.getters['user/getUserCanDelete'] }, + userCanUpload() { + return this.$store.getters['user/getUserCanUpload'] + }, selectedIsRead() { // Find an audiobook that is not read, if none then all audiobooks read return !this.selectedAudiobooks.find((ab) => { diff --git a/client/components/controls/GlobalSearch.vue b/client/components/controls/GlobalSearch.vue index f8b44d31..9513052a 100644 --- a/client/components/controls/GlobalSearch.vue +++ b/client/components/controls/GlobalSearch.vue @@ -18,7 +18,7 @@