Skip to content

Commit

Permalink
103818 Add warning tooltip to "Inherit policies" checkbox on item mov…
Browse files Browse the repository at this point in the history
…e page
  • Loading branch information
Koen Pauwels committed Aug 24, 2023
1 parent fe8429e commit 2078b75
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@ <h2>{{'item.edit.move.head' | translate: {id: (itemRD$ | async)?.payload?.handle
<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 collection’s one
</ng-template>
<input type="checkbox" name="tc" [(ngModel)]="inheritPolicies" id="inheritPoliciesCheckbox" [ngbTooltip]="tooltipContent"
>
{{'item.edit.move.inheritpolicies.checkbox' |translate}}
</label>
</p>
Expand Down

0 comments on commit 2078b75

Please sign in to comment.