diff --git a/webapp/src/client/app/modules/web-client/ard/web-client-ard.component.ts b/webapp/src/client/app/modules/web-client/ard/web-client-ard.component.ts index cfef14296..16bdb8d8a 100644 --- a/webapp/src/client/app/modules/web-client/ard/web-client-ard.component.ts +++ b/webapp/src/client/app/modules/web-client/ard/web-client-ard.component.ts @@ -368,7 +368,7 @@ export class WebClientArdComponent extends WebClientBaseComponent implements On backtrace: typeof errorData !== 'string' ? errorData?.backtrace() : '' }; - const icon: string = eventType === SessionEventType.TERMINATED ? + const icon: string = eventType === SessionEventType.TERMINATED || SessionEventType.ERROR ? WebClientArdComponent.DVL_WARNING_ICON : WebClientArdComponent.DVL_ARD_ICON; diff --git a/webapp/src/client/app/modules/web-client/rdp/web-client-rdp.component.ts b/webapp/src/client/app/modules/web-client/rdp/web-client-rdp.component.ts index 1d11ba6df..1be057648 100644 --- a/webapp/src/client/app/modules/web-client/rdp/web-client-rdp.component.ts +++ b/webapp/src/client/app/modules/web-client/rdp/web-client-rdp.component.ts @@ -372,7 +372,7 @@ export class WebClientRdpComponent extends WebClientBaseComponent implements On backtrace: typeof errorData !== 'string' ? errorData?.backtrace() : '' }; - const icon: string = eventType === SessionEventType.TERMINATED ? + const icon: string = eventType === SessionEventType.TERMINATED || SessionEventType.ERROR ? WebClientRdpComponent.DVL_WARNING_ICON : WebClientRdpComponent.DVL_RDP_ICON; diff --git a/webapp/src/client/app/modules/web-client/vnc/web-client-vnc.component.ts b/webapp/src/client/app/modules/web-client/vnc/web-client-vnc.component.ts index 826e6f576..d9e045723 100644 --- a/webapp/src/client/app/modules/web-client/vnc/web-client-vnc.component.ts +++ b/webapp/src/client/app/modules/web-client/vnc/web-client-vnc.component.ts @@ -368,7 +368,7 @@ export class WebClientVncComponent extends WebClientBaseComponent implements On backtrace: typeof errorData !== 'string' ? errorData?.backtrace() : '' }; - const icon: string = eventType === SessionEventType.TERMINATED ? + const icon: string = eventType === SessionEventType.TERMINATED || SessionEventType.ERROR ? WebClientVncComponent.DVL_WARNING_ICON : WebClientVncComponent.DVL_VNC_ICON;