mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-13 03:33:50 +00:00
Update some Icons to auto-import
This commit is contained in:
parent
45d93d19e3
commit
f4d4309be3
|
@ -13,7 +13,7 @@
|
||||||
class="d-flex"
|
class="d-flex"
|
||||||
@click="botStore.selectBot(bot.botId)"
|
@click="botStore.selectBot(bot.botId)"
|
||||||
>
|
>
|
||||||
<ReorderIcon v-if="!small" class="handle me-2 fs-4" />
|
<i-mdi-reorder-horizontal v-if="!small" class="handle me-2 fs-4" />
|
||||||
<bot-rename
|
<bot-rename
|
||||||
v-if="editingBots.includes(bot.botId)"
|
v-if="editingBots.includes(bot.botId)"
|
||||||
:bot="bot"
|
:bot="bot"
|
||||||
|
@ -38,7 +38,6 @@
|
||||||
import BotEntry from '@/components/BotEntry.vue';
|
import BotEntry from '@/components/BotEntry.vue';
|
||||||
import BotRename from '@/components/BotRename.vue';
|
import BotRename from '@/components/BotRename.vue';
|
||||||
import LoginModal from '@/views/LoginModal.vue';
|
import LoginModal from '@/views/LoginModal.vue';
|
||||||
import ReorderIcon from '~icons/mdi/reorder-horizontal';
|
|
||||||
|
|
||||||
import { useBotStore } from '@/stores/ftbotwrapper';
|
import { useBotStore } from '@/stores/ftbotwrapper';
|
||||||
import { AuthStorageWithBotId, BotDescriptor } from '@/types';
|
import { AuthStorageWithBotId, BotDescriptor } from '@/types';
|
||||||
|
|
|
@ -11,11 +11,11 @@
|
||||||
|
|
||||||
<div class="d-flex ms-2">
|
<div class="d-flex ms-2">
|
||||||
<b-button type="submit" size="sm" title="Save">
|
<b-button type="submit" size="sm" title="Save">
|
||||||
<CheckIcon />
|
<i-mdi-check />
|
||||||
</b-button>
|
</b-button>
|
||||||
|
|
||||||
<b-button class="ms-1" size="sm" title="Cancel" @click="$emit('cancelled')">
|
<b-button class="ms-1" size="sm" title="Cancel" @click="$emit('cancelled')">
|
||||||
<CloseIcon />
|
<i-mdi-close />
|
||||||
</b-button>
|
</b-button>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
@ -25,15 +25,9 @@
|
||||||
import { useBotStore } from '@/stores/ftbotwrapper';
|
import { useBotStore } from '@/stores/ftbotwrapper';
|
||||||
import { BotDescriptor } from '@/types';
|
import { BotDescriptor } from '@/types';
|
||||||
import { defineComponent, ref } from 'vue';
|
import { defineComponent, ref } from 'vue';
|
||||||
import CheckIcon from '~icons/mdi/check';
|
|
||||||
import CloseIcon from '~icons/mdi/close';
|
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
name: 'BotRename',
|
name: 'BotRename',
|
||||||
components: {
|
|
||||||
CheckIcon,
|
|
||||||
CloseIcon,
|
|
||||||
},
|
|
||||||
props: {
|
props: {
|
||||||
bot: { type: Object as () => BotDescriptor, required: true },
|
bot: { type: Object as () => BotDescriptor, required: true },
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue
Block a user