From 9866a787bd1b4f53f1d3ea885e44ebcf63802620 Mon Sep 17 00:00:00 2001 From: Lars Kiesow Date: Wed, 8 Feb 2023 23:09:52 +0100 Subject: [PATCH] Icons for book details menu This patch adds icons similar to those used in other app menus to the book details menu. --- pages/item/_id/index.vue | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/pages/item/_id/index.vue b/pages/item/_id/index.vue index cf5cbd68..7a4dd278 100644 --- a/pages/item/_id/index.vue +++ b/pages/item/_id/index.vue @@ -368,21 +368,24 @@ export default { if (!this.isIos) { items.push({ text: 'History', - value: 'history' + value: 'history', + icon: 'history' }) } if (!this.userIsFinished) { items.push({ text: 'Mark as Finished', - value: 'markFinished' + value: 'markFinished', + icon: 'beenhere' }) } if (this.progressPercent > 0) { items.push({ text: 'Discard Progress', - value: 'discardProgress' + value: 'discardProgress', + icon: 'backspace' }) } } @@ -390,20 +393,23 @@ export default { if (this.localLibraryItemId) { items.push({ text: 'Manage Local Files', - value: 'manageLocal' + value: 'manageLocal', + icon: 'folder' }) } if (!this.isPodcast && this.serverLibraryItemId) { items.push({ text: 'Add to Playlist', - value: 'playlist' + value: 'playlist', + icon: 'playlist_add' }) } items.push({ text: 'More Info', - value: 'details' + value: 'details', + icon: 'info' }) return items