From c2e2e20c161fde7fd97c86d419a9458b88e5d325 Mon Sep 17 00:00:00 2001 From: Chris Veilleux Date: Thu, 28 Jan 2021 10:22:29 -0600 Subject: [PATCH] Use generic device icon instead of Mark I icon for devices without a platform --- .../modules/device/pages/device-list/device-list.component.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/projects/account/src/app/modules/device/pages/device-list/device-list.component.ts b/projects/account/src/app/modules/device/pages/device-list/device-list.component.ts index 9490af2..d6389af 100644 --- a/projects/account/src/app/modules/device/pages/device-list/device-list.component.ts +++ b/projects/account/src/app/modules/device/pages/device-list/device-list.component.ts @@ -95,7 +95,6 @@ export class DeviceListComponent implements OnInit { getDeviceIcon(device: Device) { const knownPlatform = this.platforms[device.platform]; - // TODO: get unknown product icon from design team. - return knownPlatform ? knownPlatform.icon : '../assets/mark-1-icon.svg'; + return knownPlatform ? knownPlatform.icon : '../assets/generic-device-icon-white.svg'; } }