Skip to content
This repository has been archived by the owner on Mar 29, 2024. It is now read-only.

Commit

Permalink
Fix linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
dhaavi committed Oct 18, 2023
1 parent 6b591dc commit 32c35fb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<div *ngIf="spnEnabled" class="flex flex-row justify-center w-full gap-2 pt-2">
<div class="status-info" [routerLink]="['/spn']">

<span [ngSwitch]="spnStatus?.Status" [sfng-tooltip]="spnStatus?.Status == 'connected' ? spnTooltipTemplate : null">
<span [ngSwitch]="spnStatus?.Status" [sfng-tooltip]="spnStatus?.Status === 'connected' ? spnTooltipTemplate : null">
<ng-template ngSwitchCase="disabled">
SPN is connecting...<br>
Fail-safe blocking enabled
Expand Down

0 comments on commit 32c35fb

Please sign in to comment.