This is an automated email from the ASF dual-hosted git repository. kishoreg 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 44c4b65 fix: Query console goes blank on syntax error (#8006) 44c4b65 is described below commit 44c4b65b990e4e05dbca973f3d7073c89dc3dc65 Author: Sanket Shah <shahsan...@users.noreply.github.com> AuthorDate: Thu Jan 13 02:15:55 2022 +0530 fix: Query console goes blank on syntax error (#8006) --- 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 a054a8c..22a8462 100644 --- a/pinot-controller/src/main/resources/app/components/Table.tsx +++ b/pinot-controller/src/main/resources/app/components/Table.tsx @@ -521,7 +521,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-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org