[PS-1676] Resolve Send Filters being truncated (#3791)
This commit is contained in:
parent
62aaa8b54d
commit
19c62ba229
|
@ -23,7 +23,7 @@
|
||||||
<ul class="filter-options">
|
<ul class="filter-options">
|
||||||
<li class="filter-option" [ngClass]="{ active: selectedAll }">
|
<li class="filter-option" [ngClass]="{ active: selectedAll }">
|
||||||
<span class="filter-buttons">
|
<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 }}
|
<i class="bwi bwi-fw bwi-filter"></i>{{ "allSends" | i18n }}
|
||||||
</button>
|
</button>
|
||||||
</span>
|
</span>
|
||||||
|
@ -37,24 +37,14 @@
|
||||||
<ul class="filter-options">
|
<ul class="filter-options">
|
||||||
<li class="filter-option" [ngClass]="{ active: selectedType === sendType.Text }">
|
<li class="filter-option" [ngClass]="{ active: selectedType === sendType.Text }">
|
||||||
<span class="filter-buttons">
|
<span class="filter-buttons">
|
||||||
<button
|
<button class="filter-button" appStopClick (click)="selectType(sendType.Text)">
|
||||||
bitButton
|
|
||||||
class="filter-button"
|
|
||||||
appStopClick
|
|
||||||
(click)="selectType(sendType.Text)"
|
|
||||||
>
|
|
||||||
<i class="bwi bwi-fw bwi-file-text"></i>{{ "sendTypeText" | i18n }}
|
<i class="bwi bwi-fw bwi-file-text"></i>{{ "sendTypeText" | i18n }}
|
||||||
</button>
|
</button>
|
||||||
</span>
|
</span>
|
||||||
</li>
|
</li>
|
||||||
<li class="filter-option" [ngClass]="{ active: selectedType === sendType.File }">
|
<li class="filter-option" [ngClass]="{ active: selectedType === sendType.File }">
|
||||||
<span class="filter-buttons">
|
<span class="filter-buttons">
|
||||||
<button
|
<button class="filter-button" appStopClick (click)="selectType(sendType.File)">
|
||||||
bitButton
|
|
||||||
class="filter-button"
|
|
||||||
appStopClick
|
|
||||||
(click)="selectType(sendType.File)"
|
|
||||||
>
|
|
||||||
<i class="bwi bwi-fw bwi-file"></i>{{ "sendTypeFile" | i18n }}
|
<i class="bwi bwi-fw bwi-file"></i>{{ "sendTypeFile" | i18n }}
|
||||||
</button>
|
</button>
|
||||||
</span>
|
</span>
|
||||||
|
|
Loading…
Reference in New Issue