Browse Source

fix(nc-gui): allow negative value

pull/5505/head
Wing-Kam Wong 1 year ago
parent
commit
934a3ea370
  1. 2
      packages/nc-gui/utils/cell.ts

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

@ -73,7 +73,7 @@ export const renderValue = (result?: any) => {
// convert all date time values to local time
// the datetime is either YYYY-MM-DD hh:mm:ss (xcdb)
// or YYYY-MM-DD hh:mm:ss+xx:yy (ext)
return result.replace(/\b(\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2})(\+\d{2}:\d{2})?\b/g, (d: string) => {
return result.replace(/\b(\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2})(\[+-]\d{2}:\d{2})?\b/g, (d: string) => {
// TODO(timezone): retrieve the format from the corresponding column meta
// assume hh:mm at this moment
return dayjs(d).utc(!result.includes('+')).local().format('YYYY-MM-DD HH:mm')

Loading…
Cancel
Save