You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit handles various feedbacks from reviewers on PR:
#613
Details:
- Fixes some FR translations
- Renames "visible nodes" as "matching nodes"
- Caches the matching nodes array
- Adds a confirmation modal when clicking the global checkbox
Copy file name to clipboardExpand all lines: src/app/view/editor-edit-tools-view-component/global-nodes-management/global-nodes-management.component.html
Copy file name to clipboardExpand all lines: src/app/view/editor-edit-tools-view-component/global-nodes-management/global-nodes-management.component.ts
+64-15Lines changed: 64 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,10 @@ import {SbbInput} from "@sbb-esta/angular/input";
? $localize`:@@app.view.editor-edit-tools-view-component.confirm-collapse-all:Are you sure you want to collapse all nodes?`
101
+
: $localize`:@@app.view.editor-edit-tools-view-component.confirm-collapse-matching:Are you sure you want to collapse the ${impactedNodesCount}:count: nodes matching "${this.query}:query:"?`
102
+
: allNodesImpacted
103
+
? $localize`:@@app.view.editor-edit-tools-view-component.confirm-expand-all:Are you sure you want to expand all nodes?`
104
+
: $localize`:@@app.view.editor-edit-tools-view-component.confirm-expand-matching:Are you sure you want to expand the ${impactedNodesCount}:count: nodes matching "${this.query}:query:"?`;
0 commit comments