mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-27 10:02:59 +08:00
feat(mobile): support branch prefix dialog
This commit is contained in:
parent
bbd76069c1
commit
f348f5d7ed
@ -8,7 +8,7 @@
|
||||
* Calendar does not hide when clicking on a note by @JYC333
|
||||
* Mobile improvements:
|
||||
* [Unable to add internal link on mobile version](https://github.com/TriliumNext/Notes/issues/1677)
|
||||
* Note tree not closing when selecting some of the menu actions.
|
||||
* Note tree not closing when selecting some of the menu actions.
|
||||
|
||||
## ✨ Improvements
|
||||
|
||||
@ -19,6 +19,9 @@
|
||||
* In-app help:
|
||||
* Document structure is now precalculated, so start-up time should be slightly increased.
|
||||
* Optimized the content in order to reduce the size on disk.
|
||||
* Mobile improvements:
|
||||
* The following dialogs are now accessible: bulk actions, branch prefix, include note, add link.
|
||||
* Modals now have a safe margin on their bottom and are scrollable.
|
||||
|
||||
## 🌍 Internationalization
|
||||
|
||||
|
@ -253,7 +253,6 @@ export default class DesktopLayout {
|
||||
)
|
||||
)
|
||||
// Remove once modals are all merged
|
||||
.child(new BranchPrefixDialog())
|
||||
.child(new SortChildNotesDialog())
|
||||
.child(new PasswordNoteSetDialog())
|
||||
.child(new NoteTypeChooserDialog())
|
||||
|
@ -8,6 +8,7 @@ import PromptDialog from "../widgets/dialogs/prompt.js";
|
||||
import AddLinkDialog from "../widgets/dialogs/add_link.js";
|
||||
import IncludeNoteDialog from "../widgets/dialogs/include_note.js";
|
||||
import BulkActionsDialog from "../widgets/dialogs/bulk_actions.js";
|
||||
import BranchPrefixDialog from "../widgets/dialogs/branch_prefix.js";
|
||||
|
||||
export function applyModals(rootContainer: RootContainer) {
|
||||
rootContainer
|
||||
@ -15,7 +16,7 @@ export function applyModals(rootContainer: RootContainer) {
|
||||
.child(new AboutDialog())
|
||||
.child(new HelpDialog())
|
||||
.child(new RecentChangesDialog())
|
||||
// .child(new BranchPrefixDialog())
|
||||
.child(new BranchPrefixDialog())
|
||||
// .child(new SortChildNotesDialog())
|
||||
// .child(new PasswordNoteSetDialog())
|
||||
.child(new IncludeNoteDialog())
|
||||
|
Loading…
x
Reference in New Issue
Block a user