mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-11 02:33:51 +00:00
Update files from new linting rule
This commit is contained in:
parent
acf65f075a
commit
6daa8fc349
|
@ -17,7 +17,7 @@ import 'echarts/lib/component/visualMapPiecewise';
|
||||||
|
|
||||||
import { Trade } from '@/types';
|
import { Trade } from '@/types';
|
||||||
import { timestampHour } from '@/shared/formatters';
|
import { timestampHour } from '@/shared/formatters';
|
||||||
import { EChartOption, EChartsOptionConfig } from 'echarts';
|
import { EChartOption } from 'echarts';
|
||||||
|
|
||||||
// Define Column labels here to avoid typos
|
// Define Column labels here to avoid typos
|
||||||
const CHART_PROFIT = 'Profit %';
|
const CHART_PROFIT = 'Profit %';
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
@row-clicked="onRowClicked"
|
@row-clicked="onRowClicked"
|
||||||
@row-selected="onRowSelected"
|
@row-selected="onRowSelected"
|
||||||
>
|
>
|
||||||
<template v-slot:cell(actions)="row">
|
<template #cell(actions)="row">
|
||||||
<b-button class="btn-xs" size="sm" title="Forcesell" @click="forcesellHandler(row.item)">
|
<b-button class="btn-xs" size="sm" title="Forcesell" @click="forcesellHandler(row.item)">
|
||||||
FS
|
FS
|
||||||
</b-button>
|
</b-button>
|
||||||
|
@ -30,7 +30,7 @@
|
||||||
RM
|
RM
|
||||||
</b-button>
|
</b-button>
|
||||||
</template>
|
</template>
|
||||||
<template v-slot:cell(pair)="row">
|
<template #cell(pair)="row">
|
||||||
<ProfitSymbol :trade="row.item" />
|
<ProfitSymbol :trade="row.item" />
|
||||||
<span>
|
<span>
|
||||||
{{ row.item.pair }}
|
{{ row.item.pair }}
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
</li>
|
</li>
|
||||||
<li v-if="loggedIn" class="nav-item">
|
<li v-if="loggedIn" class="nav-item">
|
||||||
<b-nav-item-dropdown right>
|
<b-nav-item-dropdown right>
|
||||||
<template v-slot:button-content>
|
<template #button-content>
|
||||||
<b-avatar size="2em" button>FT</b-avatar>
|
<b-avatar size="2em" button>FT</b-avatar>
|
||||||
</template>
|
</template>
|
||||||
<b-dropdown-item to="/settings">Settings</b-dropdown-item>
|
<b-dropdown-item to="/settings">Settings</b-dropdown-item>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user