mirror of
https://github.com/bitwarden/browser.git
synced 2025-01-04 18:37:45 +01:00
no collections message
This commit is contained in:
parent
3d4848da90
commit
59f5304d87
@ -20,16 +20,19 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="d-flex">
|
<div class="d-flex">
|
||||||
<h3>{{'collections' | i18n}}</h3>
|
<h3>{{'collections' | i18n}}</h3>
|
||||||
<small class="ml-auto d-flex">
|
<div class="ml-auto d-flex" *ngIf="collections && collections.length">
|
||||||
<button type="button" (click)="selectAll(true)" class="btn btn-link btn-sm py-0">
|
<button type="button" (click)="selectAll(true)" class="btn btn-link btn-sm py-0">
|
||||||
{{'selectAll' | i18n}}
|
{{'selectAll' | i18n}}
|
||||||
</button>
|
</button>
|
||||||
<button type="button" (click)="selectAll(false)" class="btn btn-link btn-sm py-0">
|
<button type="button" (click)="selectAll(false)" class="btn btn-link btn-sm py-0">
|
||||||
{{'unselectAll' | i18n}}
|
{{'unselectAll' | i18n}}
|
||||||
</button>
|
</button>
|
||||||
</small>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<table class="table table-hover table-list mb-0" *ngIf="collections">
|
<div *ngIf="!collections || !collections.length">
|
||||||
|
{{'noCollectionsInList' | i18n}}
|
||||||
|
</div>
|
||||||
|
<table class="table table-hover table-list mb-0" *ngIf="collections && collections.length">
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr *ngFor="let c of collections; let i = index" (click)="check(c)">
|
<tr *ngFor="let c of collections; let i = index" (click)="check(c)">
|
||||||
<td class="table-list-checkbox">
|
<td class="table-list-checkbox">
|
||||||
|
@ -20,16 +20,19 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="d-flex">
|
<div class="d-flex">
|
||||||
<h3>{{'collections' | i18n}}</h3>
|
<h3>{{'collections' | i18n}}</h3>
|
||||||
<small class="ml-auto d-flex">
|
<div class="ml-auto d-flex" *ngIf="collections && collections.length">
|
||||||
<button type="button" (click)="selectAll(true)" class="btn btn-link btn-sm py-0">
|
<button type="button" (click)="selectAll(true)" class="btn btn-link btn-sm py-0">
|
||||||
{{'selectAll' | i18n}}
|
{{'selectAll' | i18n}}
|
||||||
</button>
|
</button>
|
||||||
<button type="button" (click)="selectAll(false)" class="btn btn-link btn-sm py-0">
|
<button type="button" (click)="selectAll(false)" class="btn btn-link btn-sm py-0">
|
||||||
{{'unselectAll' | i18n}}
|
{{'unselectAll' | i18n}}
|
||||||
</button>
|
</button>
|
||||||
</small>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<table class="table table-hover table-list mb-0" *ngIf="collections">
|
<div *ngIf="!collections || !collections.length">
|
||||||
|
{{'noCollectionsInList' | i18n}}
|
||||||
|
</div>
|
||||||
|
<table class="table table-hover table-list mb-0" *ngIf="collections && collections.length">
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr *ngFor="let c of collections; let i = index" (click)="check(c)">
|
<tr *ngFor="let c of collections; let i = index" (click)="check(c)">
|
||||||
<td class="table-list-checkbox">
|
<td class="table-list-checkbox">
|
||||||
|
Loading…
Reference in New Issue
Block a user