Fix some leftover attributes

This commit is contained in:
Matthias 2023-05-09 07:02:18 +02:00
parent a6c580768d
commit 2f7bf98352
3 changed files with 7 additions and 7 deletions

View File

@ -9,16 +9,16 @@
:title="!showBotOnly ? 'Showing Account balance' : 'Showing Bot balance'"
@click="showBotOnly = !showBotOnly"
>
<RobotIcon v-if="showBotOnly" :size="16" />
<AccountIcon v-else :size="16" />
<RobotIcon v-if="showBotOnly" />
<AccountIcon v-else />
</b-button>
<b-button
size="sm"
:title="!hideSmallBalances ? 'Hide small balances' : 'Show all balances'"
@click="hideSmallBalances = !hideSmallBalances"
>
<HideIcon v-if="hideSmallBalances" :size="16" />
<ShowIcon v-else :size="16" />
<HideIcon v-if="hideSmallBalances" />
<ShowIcon v-else />
</b-button>
<b-button class="float-end" size="sm" @click="botStore.activeBot.getBalance"

View File

@ -13,7 +13,7 @@
title="Delete trade"
@click="removePairLock(row.item)"
>
<DeleteIcon :size="16" />
<DeleteIcon />
</b-button>
</template>
</b-table>

View File

@ -36,7 +36,7 @@ const cancelOpenOrderHandler = (item: Trade) => {
title="Actions"
@click="popoverOpen = !popoverOpen"
>
<ActionIcon :size="16" title="Actions" />
<ActionIcon />
</b-button>
<b-popover
:target="`btn-actions-${id}`"
@ -57,7 +57,7 @@ const cancelOpenOrderHandler = (item: Trade) => {
@cancel-open-order="cancelOpenOrderHandler"
/>
<b-button class="mt-1 w-100 text-start" size="sm" @click="popoverOpen = false">
<CancelIcon :size="16" title="Close popup" class="me-1" />Close Actions menu
<CancelIcon class="me-1" />Close Actions menu
</b-button>
</b-popover>
</div>