Fix lint error

This commit is contained in:
Matthias 2021-02-04 19:35:28 +01:00
parent 4017b24ad5
commit cb4a64b2a2

View File

@ -114,7 +114,10 @@ export default class TradeList extends Vue {
openFields: Record<string, string | Function>[] = [{ key: 'actions' }];
// Added to table-fields for historic trades
closedFields: Record<string, string | Function>[] = [{ key: 'close_date', label: 'Close date' },{key: 'sell_reason', label: 'Close Reason'}];
closedFields: Record<string, string | Function>[] = [
{ key: 'close_date', label: 'Close date' },
{ key: 'sell_reason', label: 'Close Reason' },
];
tableFields: Record<string, string | Function>[] = [
{ key: 'trade_id', label: 'ID' },