mirror of
https://github.com/bitwarden/web
synced 2025-12-06 00:03:28 +00:00
no group/collections message
This commit is contained in:
@@ -13,7 +13,7 @@
|
||||
</div>
|
||||
<i class="fa fa-spinner fa-spin text-muted" *ngIf="loading"></i>
|
||||
<ng-container *ngIf="!loading && (collections | search:searchText:'name':'id') as searchedCollections">
|
||||
<p *ngIf="!searchedCollections.length">{{'noItemsInList' | i18n}}</p>
|
||||
<p *ngIf="!searchedCollections.length">{{'noCollectionsInList' | i18n}}</p>
|
||||
<table class="table table-hover table-list" *ngIf="searchedCollections.length">
|
||||
<tbody>
|
||||
<tr *ngFor="let c of searchedCollections">
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
</div>
|
||||
<i class="fa fa-spinner fa-spin text-muted" *ngIf="loading"></i>
|
||||
<ng-container *ngIf="!loading && (groups | search:searchText:'name':'id') as searchedGroups">
|
||||
<p *ngIf="!searchedGroups.length">{{'noItemsInList' | i18n}}</p>
|
||||
<p *ngIf="!searchedGroups.length">{{'noGroupsInList' | i18n}}</p>
|
||||
<table class="table table-hover table-list" *ngIf="searchedGroups.length">
|
||||
<tbody>
|
||||
<tr *ngFor="let g of searchedGroups">
|
||||
|
||||
Reference in New Issue
Block a user