Skip to content

Commit

Permalink
fix: radio input properties Removed error causing & unnecessary angul…
Browse files Browse the repository at this point in the history
…ar property tags from replication filters radio input

Signed-off-by: Wilfred Almeida <60785452+WilfredAlmeida@users.noreply.github.com>
  • Loading branch information
WilfredAlmeida committed Aug 14, 2023
1 parent 2d4f2e7 commit 03f0e55
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 03f0e55

Please sign in to comment.