diff --git a/ui-ngx/src/app/modules/home/components/widget/lib/gateway/gateway-connectors.component.ts b/ui-ngx/src/app/modules/home/components/widget/lib/gateway/gateway-connectors.component.ts index 4570f6344f..6daa323f03 100644 --- a/ui-ngx/src/app/modules/home/components/widget/lib/gateway/gateway-connectors.component.ts +++ b/ui-ngx/src/app/modules/home/components/widget/lib/gateway/gateway-connectors.component.ts @@ -165,7 +165,7 @@ export class GatewayConnectorComponent extends PageComponent implements AfterVie } else if (sortHeaderId === 'enabled') { return this.activeConnectors.includes(data.key) ? 1 : 0; } - return data[sortHeaderId]; + return data[sortHeaderId] || data.value[sortHeaderId]; }; this.viewsInited = true;