mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-15 22:13:02 +00:00
117544: PR feedback
- added typedocs - changed directive to only be present for buttons - various other small fixes
This commit is contained in:
@@ -31,7 +31,7 @@
|
||||
<div class="form-check">
|
||||
<input class="form-check-input" type="radio"
|
||||
name="itemMode" id="itemReplace" value="replace"
|
||||
[dsDisabled]="!state.item.toggleStatus"
|
||||
[disabled]="!state.item.toggleStatus"
|
||||
[(ngModel)]="state.item.accessMode">
|
||||
<label class="form-check-label" for="itemReplace">
|
||||
{{'access-control-replace-all' | translate}}
|
||||
@@ -40,7 +40,7 @@
|
||||
<div class="form-check">
|
||||
<input class="form-check-input" type="radio"
|
||||
name="itemMode" id="itemAdd" value="add"
|
||||
[dsDisabled]="!state.item.toggleStatus"
|
||||
[disabled]="!state.item.toggleStatus"
|
||||
[(ngModel)]="state.item.accessMode">
|
||||
<label class="form-check-label" for="itemAdd">
|
||||
{{'access-control-add-to-existing' | translate}}
|
||||
@@ -85,7 +85,7 @@
|
||||
<div class="form-check">
|
||||
<input class="form-check-input" type="radio"
|
||||
name="changesLimit" id="processAll" value="all"
|
||||
[dsDisabled]="!state.bitstream.toggleStatus"
|
||||
[disabled]="!state.bitstream.toggleStatus"
|
||||
[(ngModel)]="state.bitstream.changesLimit">
|
||||
<label class="form-check-label" for="processAll">
|
||||
{{'access-control-process-all-bitstreams' | translate}}
|
||||
@@ -94,7 +94,7 @@
|
||||
<div class="form-check">
|
||||
<input class="form-check-input mt-2" type="radio"
|
||||
name="changesLimit" id="processSelected" value="selected"
|
||||
[dsDisabled]="!state.bitstream.toggleStatus"
|
||||
[disabled]="!state.bitstream.toggleStatus"
|
||||
[(ngModel)]="state.bitstream.changesLimit">
|
||||
<label class="form-check-label" for="processSelected">
|
||||
{{ state.bitstream.selectedBitstreams.length }}
|
||||
@@ -123,7 +123,7 @@
|
||||
<div class="form-check">
|
||||
<input class="form-check-input" type="radio"
|
||||
name="bitstreamMode" id="bitstreamReplace" value="replace"
|
||||
[dsDisabled]="!state.bitstream.toggleStatus"
|
||||
[disabled]="!state.bitstream.toggleStatus"
|
||||
[(ngModel)]="state.bitstream.accessMode">
|
||||
<label class="form-check-label" for="bitstreamReplace">
|
||||
{{'access-control-replace-all' | translate}}
|
||||
@@ -132,7 +132,7 @@
|
||||
<div class="form-check">
|
||||
<input class="form-check-input" type="radio"
|
||||
name="bitstreamMode" id="bitstreamAdd" value="add"
|
||||
[dsDisabled]="!state.bitstream.toggleStatus"
|
||||
[disabled]="!state.bitstream.toggleStatus"
|
||||
[(ngModel)]="state.bitstream.accessMode">
|
||||
<label class="form-check-label" for="bitstreamAdd">
|
||||
{{'access-control-add-to-existing' | translate}}
|
||||
|
Reference in New Issue
Block a user