@gravitee/ui-policy-studio-angular 13.12.0 → 13.12.1

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.
@@ -919,6 +919,7 @@ class GioPolicyStudioFlowsMenuComponent {
919
919
  const duplicatedFlow = cloneDeep(flowToDuplicate);
920
920
  duplicatedFlow._id = uniqueId('flow_');
921
921
  duplicatedFlow.name = `${duplicatedFlow.name} - Copy`;
922
+ duplicatedFlow._hasChanged = true;
922
923
  const index = flowsGroupToEdit.flows.indexOf(flowToDuplicate);
923
924
  flowsGroupToEdit.flows.splice(index + 1, 0, duplicatedFlow);
924
925
  this.flowsGroupsChange.emit(this.flowsGroups);