Fix "Async pipe results should not be negated" from lint

This commit is contained in:
Tim Donohue
2024-05-31 12:53:45 -05:00
parent 44480cba4a
commit e3595e5f34
3 changed files with 3 additions and 3 deletions

View File

@@ -26,6 +26,6 @@
(submitSuggestion)="onSubmit($event)" (submitSuggestion)="onSubmit($event)"
(clickSuggestion)="onClick($event)" (clickSuggestion)="onClick($event)"
(findSuggestions)="findSuggestions($event)" (findSuggestions)="findSuggestions($event)"
*ngIf="!(isAvailableForShowSearchText | async)" *ngIf="(isAvailableForShowSearchText | async) === false"
ngDefaultControl></ds-filter-input-suggestions> ngDefaultControl></ds-filter-input-suggestions>
</div> </div>

View File

@@ -26,7 +26,7 @@
(submitSuggestion)="onSubmit($event)" (submitSuggestion)="onSubmit($event)"
(clickSuggestion)="onClick($event)" (clickSuggestion)="onClick($event)"
(findSuggestions)="findSuggestions($event)" (findSuggestions)="findSuggestions($event)"
*ngIf="!(isAvailableForShowSearchText | async)" *ngIf="(isAvailableForShowSearchText | async) === false"
ngDefaultControl ngDefaultControl
></ds-filter-input-suggestions> ></ds-filter-input-suggestions>
</div> </div>

View File

@@ -26,6 +26,6 @@
(submitSuggestion)="onSubmit($event)" (submitSuggestion)="onSubmit($event)"
(clickSuggestion)="onClick($event)" (clickSuggestion)="onClick($event)"
(findSuggestions)="findSuggestions($event)" (findSuggestions)="findSuggestions($event)"
*ngIf="!(isAvailableForShowSearchText | async)" *ngIf="(isAvailableForShowSearchText | async) === false"
ngDefaultControl></ds-filter-input-suggestions> ngDefaultControl></ds-filter-input-suggestions>
</div> </div>