Merge pull request #2458 from atmire/backport-2423-to-dspace-7_x

[Port to dspace-7_x] Fix inherit policies at item move (Angular)
This commit is contained in:
Tim Donohue
2023-10-25 16:38:44 -05:00
committed by GitHub
2 changed files with 7 additions and 1 deletions

View File

@@ -21,7 +21,11 @@
<div class="col-12">
<p>
<label for="inheritPoliciesCheckbox">
<input type="checkbox" name="tc" [(ngModel)]="inheritPolicies" id="inheritPoliciesCheckbox">
<ng-template #tooltipContent>
{{ 'item.edit.move.inheritpolicies.tooltip' | translate }}
</ng-template>
<input type="checkbox" name="tc" [(ngModel)]="inheritPolicies" id="inheritPoliciesCheckbox" [ngbTooltip]="tooltipContent"
>
{{'item.edit.move.inheritpolicies.checkbox' |translate}}
</label>
</p>

View File

@@ -2166,6 +2166,8 @@
"item.edit.move.inheritpolicies.description": "Inherit the default policies of the destination collection",
"item.edit.move.inheritpolicies.tooltip": "Warning: When enabled, the read access policy for the item and any files associated with the item will be replaced by the default read access policy of the collection. This cannot be undone.",
"item.edit.move.move": "Move",
"item.edit.move.processing": "Moving...",