From bf3e405ea2c23f2201ce80fc721f9876d9decb3c Mon Sep 17 00:00:00 2001 From: Igor Kulikov Date: Thu, 11 Jun 2026 11:56:04 +0300 Subject: [PATCH] feat(iot-hub): show install time in installed-items table createdTime column Switch the createdTime column formatter from 'mediumDate' (date only) to the custom pattern 'MMM d, y, h:mm a' so each row also surfaces the install time. Angular's built-in 'medium' alias was not used because it includes seconds. --- .../iot-hub/iot-hub-installed-items-table.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui-ngx/src/app/modules/home/components/iot-hub/iot-hub-installed-items-table.component.html b/ui-ngx/src/app/modules/home/components/iot-hub/iot-hub-installed-items-table.component.html index 545d219596..a64f9ab73e 100644 --- a/ui-ngx/src/app/modules/home/components/iot-hub/iot-hub-installed-items-table.component.html +++ b/ui-ngx/src/app/modules/home/components/iot-hub/iot-hub-installed-items-table.component.html @@ -44,7 +44,7 @@ {{ 'iot-hub.installed-date' | translate }} - {{ item.createdTime | date:'mediumDate' }} + {{ item.createdTime | date:'MMM d, y, h:mm a' }}