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 }}"
|
name="autoTerminate-{{ i }}"
|
||||||
(change)="handleChanged()"
|
(change)="handleChanged()"
|
||||||
[disabled]="isDisabled"
|
[disabled]="isDisabled"
|
||||||
>terminate</mat-checkbox
|
>terminate
|
||||||
>
|
</mat-checkbox>
|
||||||
<mat-checkbox
|
<mat-checkbox
|
||||||
|
color="primary"
|
||||||
[(ngModel)]="relationship.retry"
|
[(ngModel)]="relationship.retry"
|
||||||
name="retry-{{ i }}"
|
name="retry-{{ i }}"
|
||||||
(change)="handleChanged()"
|
(change)="handleChanged()"
|
||||||
[disabled]="isDisabled"
|
[disabled]="isDisabled"
|
||||||
>retry</mat-checkbox
|
>retry
|
||||||
>
|
</mat-checkbox>
|
||||||
</div>
|
</div>
|
||||||
@if (hasDescription(relationship)) {
|
@if (hasDescription(relationship)) {
|
||||||
<div class="ml-2">{{ relationship.description }}</div>
|
<div class="ml-2">{{ relationship.description }}</div>
|
||||||
|
|
Loading…
Reference in New Issue