diff --git a/komga-webui/src/components/BrowseBook.vue b/komga-webui/src/components/BrowseBook.vue
index 5d259b4d1..b811d12cf 100644
--- a/komga-webui/src/components/BrowseBook.vue
+++ b/komga-webui/src/components/BrowseBook.vue
@@ -5,6 +5,7 @@
class="sticky-bar"
:style="barStyle"
>
+
-
+
+
mdi-dots-vertical
@@ -133,6 +135,9 @@ export default Vue.extend({
next()
},
computed: {
+ isAdmin (): boolean {
+ return this.$store.getters.meAdmin
+ },
thumbnailUrl (): string {
return `${this.baseURL}/api/v1/books/${this.bookId}/thumbnail`
},
diff --git a/komga-webui/src/components/BrowseSeries.vue b/komga-webui/src/components/BrowseSeries.vue
index bb06cee5d..91dcb9dbd 100644
--- a/komga-webui/src/components/BrowseSeries.vue
+++ b/komga-webui/src/components/BrowseSeries.vue
@@ -5,6 +5,7 @@
class="sticky-bar"
:style="barStyle"
>
+
mdi-arrow-left
+
+
+
+
+ mdi-dots-vertical
+
+
+
+
+ Analyze
+
+
+
+
{{ series.name }}
+
@@ -48,19 +64,6 @@
-
-
-
-
- mdi-dots-vertical
-
-
-
-
- Analyze
-
-
-
@@ -111,6 +114,9 @@ export default Vue.extend({
}
},
computed: {
+ isAdmin (): boolean {
+ return this.$store.getters.meAdmin
+ },
sortCustom (): boolean {
return this.sortActive.key !== this.sortDefault.key || this.sortActive.order !== this.sortDefault.order
},