Fix group element removing (#1676)

This commit is contained in:
David Luzar
2020-05-30 22:48:57 +02:00
committed by GitHub
parent 17e9cc4506
commit f413bab3de
11 changed files with 478 additions and 43 deletions

View File

@ -71,8 +71,10 @@ export type AppState = {
showShortcutsDialog: boolean;
zenModeEnabled: boolean;
// groups
/** top-most selected groups (i.e. does not include nested groups) */
selectedGroupIds: { [groupId: string]: boolean };
/** group being edited when you drill down to its constituent element
(e.g. when you double-click on a group's element) */
editingGroupId: GroupId | null;
};