#{{ resourceLwM2M.get('id').value }}
{{ resourceLwM2M.get('name').value }}
diff --git a/ui-ngx/src/app/modules/home/components/profile/device/lwm2m/lwm2m-observe-attr-telemetry.component.html b/ui-ngx/src/app/modules/home/components/profile/device/lwm2m/lwm2m-observe-attr-telemetry.component.html
index 0b9c33e4a1..40a42f9122 100644
--- a/ui-ngx/src/app/modules/home/components/profile/device/lwm2m/lwm2m-observe-attr-telemetry.component.html
+++ b/ui-ngx/src/app/modules/home/components/profile/device/lwm2m/lwm2m-observe-attr-telemetry.component.html
@@ -17,7 +17,7 @@
-->
- @for (objectLwM2M of modelsFormArray.controls; track objectLwM2M) {
+ @for (objectLwM2M of modelsFormArray.controls; track objectLwM2M.value.id) {
diff --git a/ui-ngx/src/app/modules/home/components/profile/queue/tenant-profile-queues.component.html b/ui-ngx/src/app/modules/home/components/profile/queue/tenant-profile-queues.component.html
index 344583e4bc..f4d1298267 100644
--- a/ui-ngx/src/app/modules/home/components/profile/queue/tenant-profile-queues.component.html
+++ b/ui-ngx/src/app/modules/home/components/profile/queue/tenant-profile-queues.component.html
@@ -16,7 +16,7 @@
-->
- @for (queuesControl of queuesFormArray.controls; track queuesControl; let isLast = $last) {
+ @for (queuesControl of queuesFormArray.controls; track queuesControl.value.id; let isLast = $last) {
diff --git a/ui-ngx/src/app/modules/home/components/profile/queue/tenant-profile-queues.component.ts b/ui-ngx/src/app/modules/home/components/profile/queue/tenant-profile-queues.component.ts
index 9182c429d2..5a7d886b56 100644
--- a/ui-ngx/src/app/modules/home/components/profile/queue/tenant-profile-queues.component.ts
+++ b/ui-ngx/src/app/modules/home/components/profile/queue/tenant-profile-queues.component.ts
@@ -141,7 +141,6 @@ export class TenantProfileQueuesComponent implements ControlValueAccessor, Valid
}
}
-
public removeQueue(index: number) {
(this.tenantProfileQueuesFormGroup.get('queues') as UntypedFormArray).removeAt(index);
this.idMap.splice(index, 1);
diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/alarm/alarms-table-widget.component.html b/ui-ngx/src/app/modules/home/components/widget/lib/alarm/alarms-table-widget.component.html
index b1d3ed615b..0ac56423a9 100644
--- a/ui-ngx/src/app/modules/home/components/widget/lib/alarm/alarms-table-widget.component.html
+++ b/ui-ngx/src/app/modules/home/components/widget/lib/alarm/alarms-table-widget.component.html
@@ -142,7 +142,7 @@
@if (alarmsDatasource.countCellButtonAction) {
- @for (actionDescriptor of alarm.actionCellButtons; track actionDescriptor) {
+ @for (actionDescriptor of alarm.actionCellButtons; track actionDescriptor.id) {
@if (!actionDescriptor.icon) {
}
@@ -164,7 +164,7 @@
more_vert
- @for (actionDescriptor of alarm.actionCellButtons; track actionDescriptor) {
+ @for (actionDescriptor of alarm.actionCellButtons; track actionDescriptor.id) {
@if (actionDescriptor.icon) {
- @for (actionDescriptor of entity.actionCellButtons; track actionDescriptor) {
+ @for (actionDescriptor of entity.actionCellButtons; track actionDescriptor.id) {
@if (actionDescriptor.icon) {