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 EditValue from '@/components/general/EditValue.vue';
|
||||||
import PlotConfigSelect from '@/components/charts/PlotConfigSelect.vue';
|
import PlotConfigSelect from '@/components/charts/PlotConfigSelect.vue';
|
||||||
import PlotIndicator from '@/components/charts/PlotIndicator.vue';
|
import PlotIndicator from '@/components/charts/PlotIndicator.vue';
|
||||||
import { showAlert } from '@/stores/alerts';
|
import { showAlert } from '@/shared/alerts';
|
||||||
import { IndicatorConfig, PlotConfig } from '@/types';
|
import { IndicatorConfig, PlotConfig } from '@/types';
|
||||||
import PlotIndicatorSelect from './PlotIndicatorSelect.vue';
|
import PlotIndicatorSelect from './PlotIndicatorSelect.vue';
|
||||||
|
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
import { timestampms } from '@/shared/formatters';
|
import { timestampms } from '@/shared/formatters';
|
||||||
import { Lock } from '@/types';
|
import { Lock } from '@/types';
|
||||||
|
|
||||||
import { showAlert } from '@/stores/alerts';
|
import { showAlert } from '@/shared/alerts';
|
||||||
import { useBotStore } from '@/stores/ftbotwrapper';
|
import { useBotStore } from '@/stores/ftbotwrapper';
|
||||||
import { TableField } from 'bootstrap-vue-next';
|
import { TableField } from 'bootstrap-vue-next';
|
||||||
const botStore = useBotStore();
|
const botStore = useBotStore();
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { showAlert } from '@/stores/alerts';
|
import { showAlert } from '@/shared/alerts';
|
||||||
import { useSettingsStore } from '@/stores/settings';
|
import { useSettingsStore } from '@/stores/settings';
|
||||||
import { FTWsMessage, FtWsMessageTypes } from '@/types/wsMessageTypes';
|
import { FTWsMessage, FtWsMessageTypes } from '@/types/wsMessageTypes';
|
||||||
|
|
||||||
|
|
|
@ -50,7 +50,7 @@ import {
|
||||||
} from '@/types';
|
} from '@/types';
|
||||||
import axios, { AxiosResponse } from 'axios';
|
import axios, { AxiosResponse } from 'axios';
|
||||||
import { defineStore } from 'pinia';
|
import { defineStore } from 'pinia';
|
||||||
import { showAlert } from './alerts';
|
import { showAlert } from '../shared/alerts';
|
||||||
import { useWebSocket } from '@vueuse/core';
|
import { useWebSocket } from '@vueuse/core';
|
||||||
import { FTWsMessage, FtWsMessageTypes } from '@/types/wsMessageTypes';
|
import { FTWsMessage, FtWsMessageTypes } from '@/types/wsMessageTypes';
|
||||||
import { showNotification } from '@/shared/notifications';
|
import { showNotification } from '@/shared/notifications';
|
||||||
|
|
|
@ -13,7 +13,7 @@ import {
|
||||||
TradingMode,
|
TradingMode,
|
||||||
} from '@/types';
|
} from '@/types';
|
||||||
import { computed, ref, toRaw, watch } from 'vue';
|
import { computed, ref, toRaw, watch } from 'vue';
|
||||||
import { showAlert } from './alerts';
|
import { showAlert } from '../shared/alerts';
|
||||||
import { isNotUndefined } from '@/shared/formatters';
|
import { isNotUndefined } from '@/shared/formatters';
|
||||||
|
|
||||||
export const usePairlistConfigStore = defineStore(
|
export const usePairlistConfigStore = defineStore(
|
||||||
|
|
|
@ -59,7 +59,7 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { OpenTradeVizOptions, useSettingsStore } from '@/stores/settings';
|
import { OpenTradeVizOptions, useSettingsStore } from '@/stores/settings';
|
||||||
import { useLayoutStore } from '@/stores/layout';
|
import { useLayoutStore } from '@/stores/layout';
|
||||||
import { showAlert } from '@/stores/alerts';
|
import { showAlert } from '@/shared/alerts';
|
||||||
import { FtWsMessageTypes } from '@/types/wsMessageTypes';
|
import { FtWsMessageTypes } from '@/types/wsMessageTypes';
|
||||||
|
|
||||||
const settingsStore = useSettingsStore();
|
const settingsStore = useSettingsStore();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user