diff --git a/client/components/ui/MultiSelect.vue b/client/components/ui/MultiSelect.vue index 56f22f47..a03f9558 100644 --- a/client/components/ui/MultiSelect.vue +++ b/client/components/ui/MultiSelect.vue @@ -3,14 +3,14 @@

{{ label }}

-
+
close
{{ item }}
- +
@@ -46,7 +46,8 @@ export default { type: Array, default: () => [] }, - label: String + label: String, + disabled: Boolean }, data() { return { @@ -182,6 +183,7 @@ export default { }) }, clickWrapper() { + if (this.disabled) return if (this.showMenu) { return this.blur() } @@ -233,4 +235,14 @@ export default { if (this.menu) this.menu.remove() } } - \ No newline at end of file + + + \ No newline at end of file diff --git a/client/package.json b/client/package.json index 9a8ae64d..a75440dc 100644 --- a/client/package.json +++ b/client/package.json @@ -1,6 +1,6 @@ { "name": "audiobookshelf-client", - "version": "1.6.45", + "version": "1.6.46", "description": "Audiobook manager and player", "main": "index.js", "scripts": { diff --git a/client/pages/batch/index.vue b/client/pages/batch/index.vue index 5e96e9c1..2082e1e4 100644 --- a/client/pages/batch/index.vue +++ b/client/pages/batch/index.vue @@ -1,5 +1,32 @@