Use PascalCase for e-charts components

This commit is contained in:
Matthias 2024-06-07 19:12:01 +02:00
parent 4a83fc4559
commit e0b7caf4f0
10 changed files with 11 additions and 11 deletions

View File

@ -1,5 +1,5 @@
<template>
<e-charts
<ECharts
v-if="currencies"
ref="balanceChart"
:option="balanceChartOptions"

View File

@ -1,6 +1,6 @@
<template>
<div class="chart-wrapper">
<e-charts v-if="hasData" ref="candleChart" :theme="theme" autoresize manual-update />
<ECharts v-if="hasData" ref="candleChart" :theme="theme" autoresize manual-update />
</div>
</template>

View File

@ -1,5 +1,5 @@
<template>
<e-charts
<ECharts
v-if="trades"
ref="chart"
:option="cumProfitChartOptions"

View File

@ -1,5 +1,5 @@
<template>
<e-charts
<ECharts
v-if="trades.length > 0"
:option="hourlyChartOptions"
autoresize

View File

@ -1,7 +1,7 @@
<template>
<div class="d-flex flex-column h-100 position-relative">
<div class="flex-grow-1">
<e-charts v-if="trades" :option="chartOptions" autoresize :theme="settingsStore.chartTheme" />
<ECharts v-if="trades" :option="chartOptions" autoresize :theme="settingsStore.chartTheme" />
</div>
<b-form-group
class="z-2"

View File

@ -1,5 +1,5 @@
<template>
<e-charts
<ECharts
v-if="dailyStats.data"
ref="dailyChart"
:option="dailyChartOptions"

View File

@ -1,5 +1,5 @@
<template>
<e-charts
<ECharts
v-if="trades.length > 0"
:option="chartOptions"
autoresize

View File

@ -11,7 +11,7 @@
<DateTimeTZ :date="trade.open_timestamp" :date-only="true" />
</small>
</div>
<trade-profit class="col-5" :trade="trade" />
<TradeProfit class="col-5" :trade="trade" />
</div>
</template>

View File

@ -8,7 +8,7 @@
>
<i-mdi-content-save />
</b-button>
<edit-value
<EditValue
v-model="pairlistStore.config.name"
editable-name="config"
:allow-add="true"
@ -26,7 +26,7 @@
:options="pairlistStore.savedConfigs.map((c) => c.name)"
@update:model-value="(config) => pairlistStore.selectOrCreateConfig(config as string)"
/>
</edit-value>
</EditValue>
<b-button
title="Evaluate pairlist"
:disabled="pairlistStore.evaluating || !pairlistStore.pairlistValid"

View File

@ -36,7 +36,7 @@
<b-form-checkbox v-model="pairlistStore.customExchange" class="mb-2">
Custom Exchange
</b-form-checkbox>
<exchange-select
<ExchangeSelect
v-if="pairlistStore.customExchange"
v-model="pairlistStore.selectedExchange"
/>