mirror of https://github.com/apache/nifi.git
NIFI-12865 BUG - Checkboxes are inconsistently styled with primary or accent (#8472)
Updated all the checkboxes to use color="primary" to keep them consistent. Revert "NIFI-12865 BUG - Checkboxes are inconsistently styled with primary or accent" This reverts commit 5833cb1a39837b59de2c664c74c48a579234e284. Removed Registry changes
This commit is contained in:
parent
e2e54f2bc8
commit
cc64c7adc6
|
@ -37,15 +37,16 @@
|
|||
name="autoTerminate-{{ i }}"
|
||||
(change)="handleChanged()"
|
||||
[disabled]="isDisabled"
|
||||
>terminate</mat-checkbox
|
||||
>
|
||||
>terminate
|
||||
</mat-checkbox>
|
||||
<mat-checkbox
|
||||
color="primary"
|
||||
[(ngModel)]="relationship.retry"
|
||||
name="retry-{{ i }}"
|
||||
(change)="handleChanged()"
|
||||
[disabled]="isDisabled"
|
||||
>retry</mat-checkbox
|
||||
>
|
||||
>retry
|
||||
</mat-checkbox>
|
||||
</div>
|
||||
@if (hasDescription(relationship)) {
|
||||
<div class="ml-2">{{ relationship.description }}</div>
|
||||
|
|
Loading…
Reference in New Issue