Update location of alerts function

This commit is contained in:
Matthias 2023-09-23 16:26:00 +02:00
parent a54b49a237
commit ddfa519fbf
7 changed files with 6 additions and 6 deletions

View File

@ -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';

View File

@ -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();

View File

@ -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';

View File

@ -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';

View File

@ -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(

View File

@ -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();