feat(ui): added more time formats for table dropdown (#16147)
* fix(ui): added new selections for time format dropdown * fix(ui): updated giraffe version to allow for changes to be reflectedpull/16144/head
parent
7c8a7cd82d
commit
8b54076d4c
|
|
@ -129,7 +129,7 @@
|
|||
"dependencies": {
|
||||
"@influxdata/clockface": "1.0.6",
|
||||
"@influxdata/flux-parser": "^0.3.0",
|
||||
"@influxdata/giraffe": "0.16.8",
|
||||
"@influxdata/giraffe": "0.16.9",
|
||||
"@influxdata/influx": "0.5.5",
|
||||
"@influxdata/influxdb-templates": "0.9.0",
|
||||
"@influxdata/react-custom-scrollbars": "4.3.8",
|
||||
|
|
|
|||
|
|
@ -33,8 +33,11 @@ export const DEFAULT_TABLE_OPTIONS = {
|
|||
|
||||
export const FORMAT_OPTIONS: Array<{text: string}> = [
|
||||
{text: DEFAULT_TIME_FORMAT},
|
||||
{text: 'DD/MM/YYYY HH:mm:ss.sss'},
|
||||
{text: 'MM/DD/YYYY HH:mm:ss.sss'},
|
||||
{text: 'YYYY/MM/DD HH:mm:ss'},
|
||||
{text: 'HH:mm a'},
|
||||
{text: 'HH:mm'},
|
||||
{text: 'HH:mm:ss'},
|
||||
{text: 'HH:mm:ss ZZ'},
|
||||
{text: 'HH:mm:ss.sss'},
|
||||
|
|
|
|||
Loading…
Reference in New Issue