mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-27 05:25:17 +00:00
Update location of alerts function
This commit is contained in:
parent
a54b49a237
commit
ddfa519fbf
|
@ -159,7 +159,7 @@
|
|||
import EditValue from '@/components/general/EditValue.vue';
|
||||
import PlotConfigSelect from '@/components/charts/PlotConfigSelect.vue';
|
||||
import PlotIndicator from '@/components/charts/PlotIndicator.vue';
|
||||
import { showAlert } from '@/stores/alerts';
|
||||
import { showAlert } from '@/shared/alerts';
|
||||
import { IndicatorConfig, PlotConfig } from '@/types';
|
||||
import PlotIndicatorSelect from './PlotIndicatorSelect.vue';
|
||||
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
import { timestampms } from '@/shared/formatters';
|
||||
import { Lock } from '@/types';
|
||||
|
||||
import { showAlert } from '@/stores/alerts';
|
||||
import { showAlert } from '@/shared/alerts';
|
||||
import { useBotStore } from '@/stores/ftbotwrapper';
|
||||
import { TableField } from 'bootstrap-vue-next';
|
||||
const botStore = useBotStore();
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { showAlert } from '@/stores/alerts';
|
||||
import { showAlert } from '@/shared/alerts';
|
||||
import { useSettingsStore } from '@/stores/settings';
|
||||
import { FTWsMessage, FtWsMessageTypes } from '@/types/wsMessageTypes';
|
||||
|
||||
|
|
|
@ -50,7 +50,7 @@ import {
|
|||
} from '@/types';
|
||||
import axios, { AxiosResponse } from 'axios';
|
||||
import { defineStore } from 'pinia';
|
||||
import { showAlert } from './alerts';
|
||||
import { showAlert } from '../shared/alerts';
|
||||
import { useWebSocket } from '@vueuse/core';
|
||||
import { FTWsMessage, FtWsMessageTypes } from '@/types/wsMessageTypes';
|
||||
import { showNotification } from '@/shared/notifications';
|
||||
|
|
|
@ -13,7 +13,7 @@ import {
|
|||
TradingMode,
|
||||
} from '@/types';
|
||||
import { computed, ref, toRaw, watch } from 'vue';
|
||||
import { showAlert } from './alerts';
|
||||
import { showAlert } from '../shared/alerts';
|
||||
import { isNotUndefined } from '@/shared/formatters';
|
||||
|
||||
export const usePairlistConfigStore = defineStore(
|
||||
|
|
|
@ -59,7 +59,7 @@
|
|||
<script setup lang="ts">
|
||||
import { OpenTradeVizOptions, useSettingsStore } from '@/stores/settings';
|
||||
import { useLayoutStore } from '@/stores/layout';
|
||||
import { showAlert } from '@/stores/alerts';
|
||||
import { showAlert } from '@/shared/alerts';
|
||||
import { FtWsMessageTypes } from '@/types/wsMessageTypes';
|
||||
|
||||
const settingsStore = useSettingsStore();
|
||||
|
|
Loading…
Reference in New Issue
Block a user