Skip to content

Commit

Permalink
fix: radio input properties
Browse files Browse the repository at this point in the history
Removed error causing & unnecessary angular property tags from
replication filters radio input
  • Loading branch information
WilfredAlmeida committed Jul 3, 2023
1 parent 5b80742 commit edf8c20
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,7 @@ <h3 class="modal-title">{{ headerTitle | translate }}</h3>
name="filterType"
[value]="true"
[disabled]="policyId >= 0 || onGoing"
[(ngModel)]="isRegexMode"
(change)="disableRegexFilterMode()"
[ngModelOptions]="{ standalone: true }" />
(change)="disableRegexFilterMode()" />
<label for="double_star"
>Double Star
<clr-tooltip class="mode-tooltip">
Expand All @@ -165,9 +163,7 @@ <h3 class="modal-title">{{ headerTitle | translate }}</h3>
name="filterType"
[value]="false"
[disabled]="policyId >= 0 || onGoing"
[(ngModel)]="isRegexMode"
(change)="enableRegexFilterMode()"
[ngModelOptions]="{ standalone: true }" />
(change)="enableRegexFilterMode()" />
<label for="regular_expression"
>RegularExpression
<clr-tooltip class="mode-tooltip">
Expand Down

0 comments on commit edf8c20

Please sign in to comment.