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,
|
width: 80,
|
||||||
filterable: false,
|
filterable: false,
|
||||||
className: 'padded',
|
className: 'padded',
|
||||||
Cell({ value, original }) {
|
Cell({ value, original, aggregated }) {
|
||||||
|
if (aggregated) return '';
|
||||||
if (value > 0) {
|
if (value > 0) {
|
||||||
return formatDuration(value);
|
return formatDuration(value);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue