From 07d3051107481712a8612420098c75c8694cfe5f Mon Sep 17 00:00:00 2001 From: Nicoleta Panaghiu Date: Tue, 16 Jan 2024 13:13:47 +0200 Subject: [PATCH] RED-8048: fixed disabled check icon for resize action. --- .../file-preview/services/pdf-annotation-actions.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/red-ui/src/app/modules/file-preview/services/pdf-annotation-actions.service.ts b/apps/red-ui/src/app/modules/file-preview/services/pdf-annotation-actions.service.ts index a80b12d3f..5bc948141 100644 --- a/apps/red-ui/src/app/modules/file-preview/services/pdf-annotation-actions.service.ts +++ b/apps/red-ui/src/app/modules/file-preview/services/pdf-annotation-actions.service.ts @@ -121,7 +121,7 @@ export class PdfAnnotationActionsService { button.className = 'Button'; button.style.setProperty('pointer-events', 'none'); const img = document.createElement('img'); - img.src = 'ui/assets/icons/general/disabled-check.svg'; + img.src = this.#convertPath('/assets/icons/general/disabled-check.svg'); button.appendChild(img); return button;