mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-27 10:02:59 +08:00
feat(mobile): support sort child notes dialog
This commit is contained in:
parent
f348f5d7ed
commit
cd00c89dfe
@ -20,7 +20,7 @@
|
|||||||
* Document structure is now precalculated, so start-up time should be slightly increased.
|
* Document structure is now precalculated, so start-up time should be slightly increased.
|
||||||
* Optimized the content in order to reduce the size on disk.
|
* Optimized the content in order to reduce the size on disk.
|
||||||
* Mobile improvements:
|
* Mobile improvements:
|
||||||
* The following dialogs are now accessible: bulk actions, branch prefix, include note, add link.
|
* The following dialogs are now accessible: bulk actions, branch prefix, include note, add link, sort child notes.
|
||||||
* Modals now have a safe margin on their bottom and are scrollable.
|
* Modals now have a safe margin on their bottom and are scrollable.
|
||||||
|
|
||||||
## 🌍 Internationalization
|
## 🌍 Internationalization
|
||||||
|
@ -253,7 +253,6 @@ export default class DesktopLayout {
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
// Remove once modals are all merged
|
// Remove once modals are all merged
|
||||||
.child(new SortChildNotesDialog())
|
|
||||||
.child(new PasswordNoteSetDialog())
|
.child(new PasswordNoteSetDialog())
|
||||||
.child(new NoteTypeChooserDialog())
|
.child(new NoteTypeChooserDialog())
|
||||||
.child(new CloneToDialog())
|
.child(new CloneToDialog())
|
||||||
|
@ -9,6 +9,7 @@ import AddLinkDialog from "../widgets/dialogs/add_link.js";
|
|||||||
import IncludeNoteDialog from "../widgets/dialogs/include_note.js";
|
import IncludeNoteDialog from "../widgets/dialogs/include_note.js";
|
||||||
import BulkActionsDialog from "../widgets/dialogs/bulk_actions.js";
|
import BulkActionsDialog from "../widgets/dialogs/bulk_actions.js";
|
||||||
import BranchPrefixDialog from "../widgets/dialogs/branch_prefix.js";
|
import BranchPrefixDialog from "../widgets/dialogs/branch_prefix.js";
|
||||||
|
import SortChildNotesDialog from "../widgets/dialogs/sort_child_notes.js";
|
||||||
|
|
||||||
export function applyModals(rootContainer: RootContainer) {
|
export function applyModals(rootContainer: RootContainer) {
|
||||||
rootContainer
|
rootContainer
|
||||||
@ -17,7 +18,7 @@ export function applyModals(rootContainer: RootContainer) {
|
|||||||
.child(new HelpDialog())
|
.child(new HelpDialog())
|
||||||
.child(new RecentChangesDialog())
|
.child(new RecentChangesDialog())
|
||||||
.child(new BranchPrefixDialog())
|
.child(new BranchPrefixDialog())
|
||||||
// .child(new SortChildNotesDialog())
|
.child(new SortChildNotesDialog())
|
||||||
// .child(new PasswordNoteSetDialog())
|
// .child(new PasswordNoteSetDialog())
|
||||||
.child(new IncludeNoteDialog())
|
.child(new IncludeNoteDialog())
|
||||||
// .child(new NoteTypeChooserDialog())
|
// .child(new NoteTypeChooserDialog())
|
||||||
|
Loading…
x
Reference in New Issue
Block a user