Browse Source

UI: Fixed not detect delete js module

pull/12329/head
Vladyslav_Prykhodko 1 year ago
parent
commit
d06bac8bf2
  1. 1
      ui-ngx/src/app/shared/components/js-func-modules.component.ts

1
ui-ngx/src/app/shared/components/js-func-modules.component.ts

@ -119,6 +119,7 @@ export class JsFuncModulesComponent implements OnInit {
removeModule(index: number, emitEvent = true) {
(this.modulesFormGroup.get('modules') as UntypedFormArray).removeAt(index, {emitEvent});
this.modulesFormGroup.get('modules').markAsDirty({emitEvent});
}
addModule() {

Loading…
Cancel
Save