diff --git a/src/auto-imports.d.ts b/src/auto-imports.d.ts index c9ef679c..2783c244 100644 --- a/src/auto-imports.d.ts +++ b/src/auto-imports.d.ts @@ -52,6 +52,7 @@ declare global { const exportForTesting: typeof import('./utils/formatters/timeformat')['exportForTesting'] const extendRef: typeof import('@vueuse/core')['extendRef'] const findGridLayout: typeof import('./stores/layout')['findGridLayout'] + const formatObjectForTable: typeof import('./utils/objectToTableItems')['formatObjectForTable'] const formatPercent: typeof import('./utils/formatters/numberformat')['formatPercent'] const formatPrice: typeof import('./utils/formatters/numberformat')['formatPrice'] const formatPriceCurrency: typeof import('./utils/formatters/numberformat')['formatPriceCurrency'] @@ -406,6 +407,7 @@ declare module 'vue' { readonly exportForTesting: UnwrapRef readonly extendRef: UnwrapRef readonly findGridLayout: UnwrapRef + readonly formatObjectForTable: UnwrapRef readonly formatPercent: UnwrapRef readonly formatPrice: UnwrapRef readonly formatPriceCurrency: UnwrapRef @@ -751,6 +753,7 @@ declare module '@vue/runtime-core' { readonly exportForTesting: UnwrapRef readonly extendRef: UnwrapRef readonly findGridLayout: UnwrapRef + readonly formatObjectForTable: UnwrapRef readonly formatPercent: UnwrapRef readonly formatPrice: UnwrapRef readonly formatPriceCurrency: UnwrapRef diff --git a/src/components/ftbot/BacktestResultAnalysis.vue b/src/components/ftbot/BacktestResultAnalysis.vue index 9b23d5c4..ed5cca7e 100644 --- a/src/components/ftbot/BacktestResultAnalysis.vue +++ b/src/components/ftbot/BacktestResultAnalysis.vue @@ -74,7 +74,6 @@