RED-8048: fixed disabled check icon for resize action.

This commit is contained in:
Nicoleta Panaghiu 2024-01-16 13:13:47 +02:00
parent 0f71576bb3
commit 07d3051107

View File

@ -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;