diff --git a/src/app/components/favorites/favorites.component.html b/src/app/components/favorites/favorites.component.html
index 8b54addb1..19c57a87a 100644
--- a/src/app/components/favorites/favorites.component.html
+++ b/src/app/components/favorites/favorites.component.html
@@ -27,7 +27,7 @@
mat-icon-button
color="primary"
*ngIf="showEditOption(documentList.selection)"
- title="{{ 'APP.ACTIONS.EDIT' | translate }}"
+ [attr.title]="'APP.ACTIONS.EDIT' | translate"
(error)="openSnackMessage($event)"
[adf-edit-folder]="documentList.selection[0]?.entry">
create
diff --git a/src/app/components/files/files.component.html b/src/app/components/files/files.component.html
index 27c2380e7..0fd10629e 100644
--- a/src/app/components/files/files.component.html
+++ b/src/app/components/files/files.component.html
@@ -29,7 +29,7 @@
color="primary"
mat-icon-button
*ngIf="canEditFolder(documentList.selection)"
- title="{{ 'APP.ACTIONS.EDIT' | translate }}"
+ [attr.title]="'APP.ACTIONS.EDIT' | translate"
(error)="openSnackMessage($event)"
[adf-edit-folder]="documentList.selection[0]?.entry">
create