Skip to content

Commit

Permalink
Allow link clicking on overview page
Browse files Browse the repository at this point in the history
  • Loading branch information
johanneswilm committed Feb 8, 2025
1 parent b067803 commit c9ffe80
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions fiduswriter/book/static/js/modules/books/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}
Expand Down

0 comments on commit c9ffe80

Please sign in to comment.