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:
James Mingardi-Elliott 2024-03-06 17:16:28 -05:00 committed by GitHub
parent e2e54f2bc8
commit cc64c7adc6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 4 deletions

View File

@ -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>