skeleton for bulk assign attributes

This commit is contained in:
zadam
2022-05-30 22:43:20 +02:00
parent fe27c80078
commit f252badba6
5 changed files with 37 additions and 1 deletions

View File

@@ -1422,6 +1422,11 @@ export default class NoteTreeWidget extends NoteContextAwareWidget {
importDialog.showDialog(node.data.noteId);
}
async bulkAssignAttributesCommand({node}) {
const bulkAssignAttributesDialog = await import('../dialogs/bulk_assign_attributes.js');
bulkAssignAttributesDialog.showDialog(this.getSelectedOrActiveNodes(node));
}
forceNoteSyncCommand({node}) {
syncService.forceNoteSync(node.data.noteId);
}