UI: Fixed overflow list on button click

This commit is contained in:
Artem Dzhereleiko 2024-07-24 13:28:28 +03:00
parent 90d945cb2c
commit 5fe6fcce95
2 changed files with 4 additions and 4 deletions

View File

@ -327,7 +327,7 @@ export class AssetProfileAutocompleteComponent implements ControlValueAccessor,
}
createAssetProfile($event: Event, profileName: string) {
$event.preventDefault();
$event.stopPropagation();
const assetProfile: AssetProfile = {
name: profileName
} as AssetProfile;
@ -337,7 +337,7 @@ export class AssetProfileAutocompleteComponent implements ControlValueAccessor,
}
editAssetProfile($event: Event) {
$event.preventDefault();
$event.stopPropagation();
this.assetProfileService.getAssetProfile(this.modelValue.id).subscribe(
(assetProfile) => {
this.openAssetProfileDialog(assetProfile, false);

View File

@ -349,7 +349,7 @@ export class DeviceProfileAutocompleteComponent implements ControlValueAccessor,
}
createDeviceProfile($event: Event, profileName: string) {
$event.preventDefault();
$event.stopPropagation();
const deviceProfile: DeviceProfile = {
name: profileName,
transportType: this.transportType
@ -360,7 +360,7 @@ export class DeviceProfileAutocompleteComponent implements ControlValueAccessor,
}
editDeviceProfile($event: Event) {
$event.preventDefault();
$event.stopPropagation();
this.deviceProfileService.getDeviceProfile(this.modelValue.id).subscribe(
(deviceProfile) => {
this.openDeviceProfileDialog(deviceProfile, false);