From 41a498e8d2499ab52cbcfdc868d006d1e9dce084 Mon Sep 17 00:00:00 2001 From: liam Date: Sun, 12 Oct 2025 15:11:05 -0400 Subject: [PATCH] Add tool tip to disabled delete button when user does not have permissions to delete items on issues tab --- client/components/app/BookShelfToolbar.vue | 3 +++ client/strings/en-us.json | 1 + 2 files changed, 4 insertions(+) diff --git a/client/components/app/BookShelfToolbar.vue b/client/components/app/BookShelfToolbar.vue index b7ecff624..06af09516 100644 --- a/client/components/app/BookShelfToolbar.vue +++ b/client/components/app/BookShelfToolbar.vue @@ -74,6 +74,9 @@ {{ $strings.ButtonRemoveAll }} {{ $formatNumber(numShowing) }} {{ entityName }} + + {{ $strings.ButtonRemoveAll }} {{ $formatNumber(numShowing) }} {{ entityName }} + diff --git a/client/strings/en-us.json b/client/strings/en-us.json index 83acb5a69..07ad86b06 100644 --- a/client/strings/en-us.json +++ b/client/strings/en-us.json @@ -80,6 +80,7 @@ "ButtonRefresh": "Refresh", "ButtonRemove": "Remove", "ButtonRemoveAll": "Remove All", + "ButtonRemoveAllInsufficientPermissions": "User has insufficient permissions to remove items.", "ButtonRemoveAllLibraryItems": "Remove All Library Items", "ButtonRemoveFromContinueListening": "Remove from Continue Listening", "ButtonRemoveFromContinueReading": "Remove from Continue Reading",