Browse Source

UI: Fixed apply changes button enabled by default in Device Profile Transport configuration tab

pull/12666/head
Vladyslav_Prykhodko 1 year ago
parent
commit
7d00f4ed1d
  1. 2
      ui-ngx/src/app/modules/home/components/profile/device/device-profile-transport-configuration.component.ts

2
ui-ngx/src/app/modules/home/components/profile/device/device-profile-transport-configuration.component.ts

@ -103,7 +103,7 @@ export class DeviceProfileTransportConfigurationComponent implements ControlValu
delete configuration.type;
}
setTimeout(() => {
this.deviceProfileTransportConfigurationFormGroup.patchValue({configuration});
this.deviceProfileTransportConfigurationFormGroup.patchValue({configuration}, {emitEvent: false});
}, 0);
}

Loading…
Cancel
Save