mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
[CST-7757] modal fixes
This commit is contained in:
@@ -27,6 +27,7 @@
|
|||||||
</ds-alert>
|
</ds-alert>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
</div>
|
</div>
|
||||||
|
<p class="text-muted">{{'subscriptions.modal.delete-info' | translate}}</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
<button type="button" class="btn btn-outline-secondary"
|
<button type="button" class="btn btn-outline-secondary"
|
||||||
|
@@ -1,8 +1,7 @@
|
|||||||
<td class="dso-info">
|
<td class="dso-info">
|
||||||
<span *ngIf="!!dso" class="badge badge-info">{{dso.type}}</span>
|
<ds-type-badge *ngIf="!!dso" [object]="dso"></ds-type-badge>
|
||||||
<p><a *ngIf="!!dso" [routerLink]="[getPageRoutePrefix(), dso.id]">{{dso.name}}</a></p>
|
<p><a *ngIf="!!dso" [routerLink]="[getPageRoutePrefix(), dso.id]">{{dso.name}}</a></p>
|
||||||
</td>
|
</td><td>
|
||||||
<td>
|
|
||||||
<span *ngIf="!!subscription" class="subscription-type">{{subscription.subscriptionType}}</span>
|
<span *ngIf="!!subscription" class="subscription-type">{{subscription.subscriptionType}}</span>
|
||||||
</td>
|
</td>
|
||||||
<td class="subscription-parameters">
|
<td class="subscription-parameters">
|
||||||
|
@@ -94,7 +94,7 @@ describe('SubscriptionViewComponent', () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
it('should have dso object info', () => {
|
it('should have dso object info', () => {
|
||||||
expect(de.query(By.css('.dso-info > span'))).toBeTruthy();
|
expect(de.query(By.css('.dso-info > ds-type-badge'))).toBeTruthy();
|
||||||
expect(de.query(By.css('.dso-info > p > a'))).toBeTruthy();
|
expect(de.query(By.css('.dso-info > p > a'))).toBeTruthy();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@@ -4589,6 +4589,8 @@
|
|||||||
|
|
||||||
"subscriptions.modal.close": "Close",
|
"subscriptions.modal.close": "Close",
|
||||||
|
|
||||||
|
"subscriptions.modal.delete-info": "To remove this subscription, please visit the \"Subscriptions\" page under your user profile",
|
||||||
|
|
||||||
"subscriptions.modal.new-subscription-form.type.content": "Content",
|
"subscriptions.modal.new-subscription-form.type.content": "Content",
|
||||||
|
|
||||||
"subscriptions.modal.new-subscription-form.frequency.D": "Daily",
|
"subscriptions.modal.new-subscription-form.frequency.D": "Daily",
|
||||||
@@ -4619,8 +4621,7 @@
|
|||||||
|
|
||||||
"subscriptions.table.action": "Action",
|
"subscriptions.table.action": "Action",
|
||||||
|
|
||||||
"subscriptions.table.empty.message": "You have not subscribed any notification yet. To subscribe notification about an object please use the contextual menu in the object detail view",
|
"subscriptions.table.empty.message": "You do not have any subscriptions at this time. To subscribe to email updates for a Community or Collection, use the subscription button on the object's page.",
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
"thumbnail.default.alt": "Thumbnail Image",
|
"thumbnail.default.alt": "Thumbnail Image",
|
||||||
|
Reference in New Issue
Block a user