17 lines
495 B
Plaintext
17 lines
495 B
Plaintext
@using FoodsharingSiegen.Contracts.Enums
|
|
|
|
<Button Color="Color.Primary"
|
|
Width="Width.Px(50)"
|
|
Height="Height.Px(50)"
|
|
title="Sortieren"
|
|
style="min-width: auto;"
|
|
Clicked="@OpenSortDialogAsync">
|
|
<i class="fa-solid fa-sort"></i>
|
|
</Button>
|
|
|
|
<div class="badge-row mt-2">
|
|
@if (HasCustomSort)
|
|
{
|
|
<Badge Color="Color.Primary" Closable="true" CloseClicked="@EventCallback.Factory.Create(this, ResetSortAsync)">@CurrentSortText</Badge>
|
|
}
|
|
</div> |