1
0

ESLint: fix no-negated-async violations

This commit is contained in:
Yury Bondarenko
2023-06-27 14:06:36 +02:00
parent fa2c22d240
commit 741c6009f4
78 changed files with 175 additions and 159 deletions

View File

@@ -25,7 +25,7 @@
[disabled]="(processingDelete$ | async)"
(click)="$event.preventDefault();confirmDelete(content);">
<i *ngIf="(processingDelete$ | async)" class="fas fa-circle-notch fa-spin fa-2x text-danger"></i>
<i *ngIf="!(processingDelete$ | async)" class="fa fa-trash fa-2x text-danger"></i>
<i *ngIf="(processingDelete$ | async) === false" class="fa fa-trash fa-2x text-danger"></i>
</button>
</ng-container>
</div>