Skip to content

Commit

Permalink
[PS-1676] Resolve Send Filters being truncated (#3791)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hinton committed Oct 14, 2022
1 parent 62aaa8b commit 19c62ba
Showing 1 changed file with 3 additions and 13 deletions.
16 changes: 3 additions & 13 deletions apps/web/src/app/send/send.component.html
Expand Up @@ -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>
Expand All @@ -37,24 +37,14 @@ <h3>{{ "types" | i18n }}</h3>
<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>
Expand Down

0 comments on commit 19c62ba

Please sign in to comment.