Skip to content

Commit

Permalink
fix(links): column names with hours were being mangled
Browse files Browse the repository at this point in the history
  • Loading branch information
billyc committed Oct 5, 2021
1 parent 2350993 commit f61a6fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plugins/links-gl/LinkVolumes.vue
Original file line number Diff line number Diff line change
Expand Up @@ -471,10 +471,10 @@ class MyPlugin extends Vue {
if (this.vizDetails.useSlider) header.unshift(`${this.$t('all')}`)
// "8 AM" is a lot narrower than "08:00:00"
const cleanHeaders = header.map(h => h.replace(':00:00', ''))
// const cleanHeaders = header.map(h => h.replace(':00:00', ''))
const details = {
header: cleanHeaders,
header, // : cleanHeaders,
headerMax: this.vizDetails.useSlider
? new Array(this.csvData.header.length).fill(globalMax)
: [],
Expand Down

0 comments on commit f61a6fd

Please sign in to comment.