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

@@ -104,7 +104,9 @@ class TreeContextMenu {
{ title: "Export", command: "exportNote", uiIcon: "empty",
enabled: notSearch && noSelectedNotes },
{ title: "Import into note", command: "importIntoNote", uiIcon: "empty",
enabled: notSearch && noSelectedNotes }
enabled: notSearch && noSelectedNotes },
{ title: "Bulk assign attributes", command: "bulkAssignAttributes", uiIcon: "empty",
enabled: true }
].filter(row => row !== null);
}