Skip to content

Commit

Permalink
NAS-132826: Advanced Replication: Got an error when creating a Replic…
Browse files Browse the repository at this point in the history
…ation task including snapshots with "Matching naming schema" and "Matching regular expression" (#11329)
  • Loading branch information
AlexKarpov98 authored Jan 14, 2025
1 parent 56079f8 commit 0f70118
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,10 @@ export class IxExplorerComponent implements OnInit, OnChanges, ControlValueAcces
}

onNodeSelect(event: { node: TreeNode<ExplorerNodeData> }): void {
if (!event.node.id) {
return;
}

if (this.multiple()) {
this.selectTreeNodes([
...Object.keys(this.tree().treeModel.selectedLeafNodeIds),
Expand Down

0 comments on commit 0f70118

Please sign in to comment.