mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-26 13:05:15 +00:00
Fix some leftover attributes
This commit is contained in:
parent
a6c580768d
commit
2f7bf98352
|
@ -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"
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
title="Delete trade"
|
||||
@click="removePairLock(row.item)"
|
||||
>
|
||||
<DeleteIcon :size="16" />
|
||||
<DeleteIcon />
|
||||
</b-button>
|
||||
</template>
|
||||
</b-table>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue
Block a user