Merge pull request #10999 from vvlladd28/bug/entity-table-header/autocomplete-create-new

Fixed entity table header components disabled create new device/asset profile
This commit is contained in:
Igor Kulikov 2024-07-01 16:06:40 +03:00 committed by GitHub
commit d5d3f4a708
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 2 deletions

View File

@ -54,7 +54,8 @@
formControlName="deviceProfileId" formControlName="deviceProfileId"
[displayAllOnEmpty]="true" [displayAllOnEmpty]="true"
(deviceProfileChanged)="deviceProfileChanged($event)" (deviceProfileChanged)="deviceProfileChanged($event)"
[editProfileEnabled]="false"> [editProfileEnabled]="false"
[addNewProfile]="false">
</tb-device-profile-autocomplete> </tb-device-profile-autocomplete>
<mat-form-field> <mat-form-field>
<mat-label translate>device.device-state</mat-label> <mat-label translate>device.device-state</mat-label>

View File

@ -60,7 +60,6 @@
<tb-device-profile-autocomplete <tb-device-profile-autocomplete
required required
addNewProfile addNewProfile
showCreateNewButton
selectDefaultProfile selectDefaultProfile
formControlName="deviceProfileId" formControlName="deviceProfileId"
(deviceProfileChanged)="deviceProfileChanged($event)"> (deviceProfileChanged)="deviceProfileChanged($event)">

View File

@ -19,6 +19,7 @@
subscriptSizing="dynamic" subscriptSizing="dynamic"
[ngModel]="entitiesTableConfig.componentsData.assetProfileId" [ngModel]="entitiesTableConfig.componentsData.assetProfileId"
(ngModelChange)="assetProfileChanged($event)" (ngModelChange)="assetProfileChanged($event)"
[addNewProfile]="false"
[displayAllOnEmpty]="true" [displayAllOnEmpty]="true"
[editProfileEnabled]="false"> [editProfileEnabled]="false">
</tb-asset-profile-autocomplete> </tb-asset-profile-autocomplete>