This is an automated email from the ASF dual-hosted git repository.
rongr 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 2e367a202e UI: fix table link issue in task detail page (#12253)
2e367a202e is described below
commit 2e367a202e8f5e4e08b8b2cbef59714b9f2d2653
Author: Jayesh Choudhary <[email protected]>
AuthorDate: Thu Jan 11 06:59:47 2024 +0530
UI: fix table link issue in task detail page (#12253)
---
pinot-controller/src/main/resources/app/pages/TaskQueue.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pinot-controller/src/main/resources/app/pages/TaskQueue.tsx
b/pinot-controller/src/main/resources/app/pages/TaskQueue.tsx
index 0c9fe5d45c..3bd62ef7a2 100644
--- a/pinot-controller/src/main/resources/app/pages/TaskQueue.tsx
+++ b/pinot-controller/src/main/resources/app/pages/TaskQueue.tsx
@@ -68,7 +68,7 @@ const TaskQueue = (props) => {
const tablesResponse:any = await PinotMethodUtils.getTableData({ taskType
});
setTaskInfo(taskInfoRes);
setTables((prevState): TableData => {
- const _records = map(get(tablesResponse, 'tables', []), table =>
[[table]]);
+ const _records = map(get(tablesResponse, 'tables', []), table =>
[table]);
return { ...prevState, records: _records };
});
setFetching(false);
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]