Update files from new linting rule

This commit is contained in:
Matthias 2020-10-06 08:00:26 +02:00
parent acf65f075a
commit 6daa8fc349
3 changed files with 4 additions and 4 deletions

View File

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

View File

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

View File

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