You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by ri...@apache.org on 2022/02/28 08:45:56 UTC

[pinot] branch master updated: (fix): -- is showing in query console instead of value 0 (#8257)

This is an automated email from the ASF dual-hosted git repository.

richardstartin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pinot.git


The following commit(s) were added to refs/heads/master by this push:
     new e6330bb  (fix): -- is showing in query console instead of value 0 (#8257)
e6330bb is described below

commit e6330bb7297c2d6f80657e4db8619ed34ccfda43
Author: Sanket Shah <sh...@users.noreply.github.com>
AuthorDate: Mon Feb 28 14:15:36 2022 +0530

    (fix): -- is showing in query console instead of value 0 (#8257)
---
 pinot-controller/src/main/resources/app/components/Table.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pinot-controller/src/main/resources/app/components/Table.tsx b/pinot-controller/src/main/resources/app/components/Table.tsx
index c43c1bd..44e7d1b 100644
--- a/pinot-controller/src/main/resources/app/components/Table.tsx
+++ b/pinot-controller/src/main/resources/app/components/Table.tsx
@@ -519,7 +519,7 @@ export default function CustomizedTables({
                             className={isCellClickable ? classes.isCellClickable : (isSticky ? classes.isSticky : '')}
                             onClick={() => {cellClickCallback && cellClickCallback(cell);}}
                           >
-                            {makeCell(cell || '--', index)}
+                            {makeCell(cell ?? '--', index)}
                           </StyledTableCell>
                         );
                       })}

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org