mirror of https://github.com/apache/druid.git
don't render duration if aggregated (#13455)
This commit is contained in:
parent
cc2e4a80ff
commit
2fdcfffe40
|
@ -917,7 +917,8 @@ ORDER BY
|
|||
width: 80,
|
||||
filterable: false,
|
||||
className: 'padded',
|
||||
Cell({ value, original }) {
|
||||
Cell({ value, original, aggregated }) {
|
||||
if (aggregated) return '';
|
||||
if (value > 0) {
|
||||
return formatDuration(value);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue