Merge pull request #12666 from vvlladd28/bug/device-profile/dirty-form-transport-config

Fixed apply changes button enabled by default in Device Profile Transport configuration tab
This commit is contained in:
Andrew Shvayka 2025-02-19 18:48:48 +02:00 committed by GitHub
commit bd3c0e3359
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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