Display and create fuels for de and uk

This commit is contained in:
Chad Derya 2019-09-04 12:48:17 +01:00
parent 68ffe55abb
commit 8188801829
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ function __dataToDTO(data) {
'lpt': Number(data.lpt),
'duty': Number(data.duty),
'type': 'SPOT',
'platform': data.platform || 'OLFDE',
'platform': store.state.platform,
'meta': data.meta,
'status': data.status
}

View File

@ -52,7 +52,7 @@ export default {
}
},
created() {
this.listQuery.platform = 'OLFDE'
this.listQuery.platform = this.$store.state.settings.platform
this.getList()
},