103818 Add warning tooltip to "Inherit policies" checkbox on item move page

This commit is contained in:
Koen Pauwels
2023-08-04 12:25:20 +02:00
parent 404ccd9b0e
commit 95abcc9ce8

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>
The original item read access policy for this item will be replaced by the collections one
</ng-template>
<input type="checkbox" name="tc" [(ngModel)]="inheritPolicies" id="inheritPoliciesCheckbox" [ngbTooltip]="tooltipContent"
>
{{'item.edit.move.inheritpolicies.checkbox' |translate}}
</label>
</p>