Merge branch 'RED-8048' into 'master'

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

See merge request redactmanager/red-ui!255
This commit is contained in:
Dan Percic 2024-01-16 12:14:48 +01:00
commit ca13ba1a67

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;