From c9ffe80879faf57b43e38ddb1f1f6ccb3e4ba592 Mon Sep 17 00:00:00 2001 From: Johannes Wilm Date: Sat, 8 Feb 2025 12:56:15 +0100 Subject: [PATCH] Allow link clicking on overview page --- fiduswriter/book/static/js/modules/books/index.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/fiduswriter/book/static/js/modules/books/index.js b/fiduswriter/book/static/js/modules/books/index.js index fdb53a6..559b778 100644 --- a/fiduswriter/book/static/js/modules/books/index.js +++ b/fiduswriter/book/static/js/modules/books/index.js @@ -287,6 +287,13 @@ export class BookOverview { this.mod.actions.deleteBookDialog([bookId], this.app) } } else { + if ( + event.target.closest( + "span.fw-data-table-title, span.rights, span.delete-book" + ) + ) { + return + } if (!focused) { this.table.dom.focus() }