mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
Icon changes & fix after rebase
This commit is contained in:
@@ -610,7 +610,8 @@ describe('authReducer', () => {
|
||||
loaded: false,
|
||||
blocking: true,
|
||||
loading: false,
|
||||
authMethods: authMethods
|
||||
authMethods: authMethods,
|
||||
idle: false
|
||||
};
|
||||
expect(newState).toEqual(state);
|
||||
});
|
||||
@@ -621,7 +622,8 @@ describe('authReducer', () => {
|
||||
loaded: false,
|
||||
blocking: true,
|
||||
loading: true,
|
||||
authMethods: []
|
||||
authMethods: [],
|
||||
idle: false
|
||||
};
|
||||
|
||||
const action = new RetrieveAuthMethodsErrorAction(false);
|
||||
@@ -685,7 +687,8 @@ describe('authReducer', () => {
|
||||
loaded: false,
|
||||
blocking: true,
|
||||
loading: true,
|
||||
authMethods: []
|
||||
authMethods: [],
|
||||
idle: false
|
||||
};
|
||||
|
||||
const action = new RetrieveAuthMethodsErrorAction(true);
|
||||
@@ -695,7 +698,8 @@ describe('authReducer', () => {
|
||||
loaded: false,
|
||||
blocking: true,
|
||||
loading: false,
|
||||
authMethods: [new AuthMethod(AuthMethodType.Password)]
|
||||
authMethods: [new AuthMethod(AuthMethodType.Password)],
|
||||
idle: false
|
||||
};
|
||||
expect(newState).toEqual(state);
|
||||
});
|
||||
|
@@ -9,10 +9,10 @@
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="cancel btn btn-danger" (click)="logOutPressed()" aria-label="Log out">
|
||||
<i class="fas fa-times"></i> {{ "idle-modal.log-out" | translate }}
|
||||
<i class="fas fa-sign-out-alt"></i> {{ "idle-modal.log-out" | translate }}
|
||||
</button>
|
||||
<button type="button" class="confirm btn btn-outline-secondary" (click)="extendSessionPressed()" aria-label="Extend session" ngbAutofocus>
|
||||
{{ "idle-modal.extend-session" | translate }}
|
||||
<button type="button" class="confirm btn btn-primary" (click)="extendSessionPressed()" aria-label="Extend session" ngbAutofocus>
|
||||
<i class="fas fa-redo-alt"></i> {{ "idle-modal.extend-session" | translate }}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user