@gravitee/ui-policy-studio-angular 14.0.0 → 14.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -918,6 +918,7 @@ class GioPolicyStudioFlowsMenuComponent {
918
918
  const duplicatedFlow = cloneDeep(flowToDuplicate);
919
919
  duplicatedFlow._id = uniqueId('flow_');
920
920
  duplicatedFlow.name = `${duplicatedFlow.name} - Copy`;
921
+ duplicatedFlow._hasChanged = true;
921
922
  const index = flowsGroupToEdit.flows.indexOf(flowToDuplicate);
922
923
  flowsGroupToEdit.flows.splice(index + 1, 0, duplicatedFlow);
923
924
  this.flowsGroupsChange.emit(this.flowsGroups);