[ML] sets truncateText to true for the 'Latest timestamp' column (#50004)

* sets truncateText to true for the 'Latest timestamp' column

* Truncates the creation time at the analytics panel
This commit is contained in:
ffknob 2019-11-14 08:31:58 -03:00 committed by Pete Harverson
parent 9aca58966d
commit 6a6fc51bf8
2 changed files with 2 additions and 0 deletions

View file

@ -72,6 +72,7 @@ export const AnalyticsTable: FC<Props> = ({ items }) => {
dataType: 'date',
render: (time: number) => formatHumanReadableDateTimeSeconds(time),
textOnly: true,
truncateText: true,
sortable: true,
width: '20%',
},

View file

@ -144,6 +144,7 @@ export const AnomalyDetectionTable: FC<Props> = ({ items, jobsList, statsBarData
dataType: 'date',
render: (time: number) => formatHumanReadableDateTimeSeconds(time),
textOnly: true,
truncateText: true,
sortable: true,
width: '20%',
},