1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 23:33:31 +00:00

[PM-12774] - don't display filters when no sends are available (#11298)

* don't display filters when no sends are available

* move logic down. add conditional class

* fix logic for send filters
This commit is contained in:
Jordan Aasen
2024-10-01 11:46:10 -07:00
committed by GitHub
parent 256c6aef5c
commit ab5a02f483
2 changed files with 2 additions and 2 deletions

View File

@@ -10,7 +10,7 @@
<bit-callout *ngIf="sendsDisabled" [title]="'sendDisabled' | i18n">
{{ "sendDisabledWarning" | i18n }}
</bit-callout>
<ng-container *ngIf="!sendsDisabled">
<ng-container *ngIf="listState !== sendState.Empty">
<tools-send-search></tools-send-search>
<app-send-list-filters></app-send-list-filters>
</ng-container>