mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-26 17:24:45 +00:00
[ACS-8902] Fixed incorrect icon for join library option (#4310)
This commit is contained in:
parent
d6f859dd74
commit
03e505a898
@ -44,7 +44,7 @@ import { MatMenuModule } from '@angular/material/menu';
|
|||||||
[isAdmin]="(profile$ | async).isAdmin"
|
[isAdmin]="(profile$ | async).isAdmin"
|
||||||
[attr.title]="(membership.isJoinRequested | async) ? ('APP.ACTIONS.CANCEL_JOIN' | translate) : ('APP.ACTIONS.JOIN' | translate)"
|
[attr.title]="(membership.isJoinRequested | async) ? ('APP.ACTIONS.CANCEL_JOIN' | translate) : ('APP.ACTIONS.JOIN' | translate)"
|
||||||
>
|
>
|
||||||
<mat-icon>{{ membership.isJoinRequested ? 'cancel' : 'library_add' }}</mat-icon>
|
<mat-icon>{{ (membership.isJoinRequested | async) ? 'cancel' : 'library_add' }}</mat-icon>
|
||||||
<span>{{ (membership.isJoinRequested | async) ? ('APP.ACTIONS.CANCEL_JOIN' | translate) : ('APP.ACTIONS.JOIN' | translate) }}</span>
|
<span>{{ (membership.isJoinRequested | async) ? ('APP.ACTIONS.CANCEL_JOIN' | translate) : ('APP.ACTIONS.JOIN' | translate) }}</span>
|
||||||
</button>
|
</button>
|
||||||
`,
|
`,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user