Skip to content

Commit

Permalink
[FM] Automated formating frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Oct 28, 2024
1 parent 2620d9a commit 6925532
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ <h3 class="title">{{ keyResult.title }}</h3>
*ngIf="keyResultMetric.lastCheckIn as lastCheckIn"
class="keyResult-detail-attribute-show rounded-5 p-2 metric-col d-flex justify-content-center gap-1"
[ngClass]="{
'border-error': calculateCurrentPercentage(keyResultMetric) < 1
'border-error': calculateCurrentPercentage(keyResultMetric) < 1,
}"
>
<span class="text-error" *ngIf="calculateCurrentPercentage(keyResultMetric) < 1">!</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
class="successful w-50 valuation-card card-hover-successful"
[ngClass]="{
'active-successful': completeForm.value.isSuccessful == true,
'non-active-successful': completeForm.value.isSuccessful === false
'non-active-successful': completeForm.value.isSuccessful === false,
}"
(click)="switchSuccessState('successful')"
(keydown.enter)="switchSuccessState('successful')"
Expand All @@ -30,7 +30,7 @@
class="not-successful w-50 valuation-card card-hover-not-successful"
[ngClass]="{
'active-not-successful': completeForm.value.isSuccessful === false,
'non-active-not-successful': completeForm.value.isSuccessful == true
'non-active-not-successful': completeForm.value.isSuccessful == true,
}"
(click)="switchSuccessState('notSuccessful')"
(keydown.enter)="switchSuccessState('notSuccessful')"
Expand Down

0 comments on commit 6925532

Please sign in to comment.