Browse Source

refactor(nc-gui): revise comment

pull/5719/head
Wing-Kam Wong 1 year ago
parent
commit
394292443c
  1. 2
      packages/nc-gui/utils/cell.ts

2
packages/nc-gui/utils/cell.ts

@ -72,7 +72,7 @@ export const renderValue = (result?: any) => {
// or YYYY-MM-DD hh:mm:ss+/-xx:yy (ext)
return result.replace(/\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}(?:[+-]\d{2}:\d{2})?/g, (d: string) => {
// TODO(timezone): retrieve the format from the corresponding column meta
// assume hh:mm at this moment
// assume HH:mm at this moment
return dayjs(d).isValid() ? dayjs(d).format('YYYY-MM-DD HH:mm') : d
})
}

Loading…
Cancel
Save