|
|
|
|
@ -23,7 +23,7 @@
@@ -23,7 +23,7 @@
|
|
|
|
|
<ul class="filter-options"> |
|
|
|
|
<li class="filter-option" [ngClass]="{ active: selectedAll }"> |
|
|
|
|
<span class="filter-buttons"> |
|
|
|
|
<button bitButton class="filter-button" appStopClick (click)="selectAll()"> |
|
|
|
|
<button class="filter-button" appStopClick (click)="selectAll()"> |
|
|
|
|
<i class="bwi bwi-fw bwi-filter"></i>{{ "allSends" | i18n }} |
|
|
|
|
</button> |
|
|
|
|
</span> |
|
|
|
|
@ -37,24 +37,14 @@
@@ -37,24 +37,14 @@
|
|
|
|
|
<ul class="filter-options"> |
|
|
|
|
<li class="filter-option" [ngClass]="{ active: selectedType === sendType.Text }"> |
|
|
|
|
<span class="filter-buttons"> |
|
|
|
|
<button |
|
|
|
|
bitButton |
|
|
|
|
class="filter-button" |
|
|
|
|
appStopClick |
|
|
|
|
(click)="selectType(sendType.Text)" |
|
|
|
|
> |
|
|
|
|
<button class="filter-button" appStopClick (click)="selectType(sendType.Text)"> |
|
|
|
|
<i class="bwi bwi-fw bwi-file-text"></i>{{ "sendTypeText" | i18n }} |
|
|
|
|
</button> |
|
|
|
|
</span> |
|
|
|
|
</li> |
|
|
|
|
<li class="filter-option" [ngClass]="{ active: selectedType === sendType.File }"> |
|
|
|
|
<span class="filter-buttons"> |
|
|
|
|
<button |
|
|
|
|
bitButton |
|
|
|
|
class="filter-button" |
|
|
|
|
appStopClick |
|
|
|
|
(click)="selectType(sendType.File)" |
|
|
|
|
> |
|
|
|
|
<button class="filter-button" appStopClick (click)="selectType(sendType.File)"> |
|
|
|
|
<i class="bwi bwi-fw bwi-file"></i>{{ "sendTypeFile" | i18n }} |
|
|
|
|
</button> |
|
|
|
|
</span> |
|
|
|
|
|