Skip to content

Commit 7f4a220

Browse files
author
Marco
committed
review
1 parent 05e14b4 commit 7f4a220

File tree

4 files changed

+7
-11
lines changed

4 files changed

+7
-11
lines changed

components/webui/client/package-lock.json

Lines changed: 2 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/webui/client/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
"@emotion/styled": "^11.14.0",
1919
"@mui/joy": "^5.0.0-beta.51",
2020
"@sinclair/typebox": "^0.34.25",
21+
"@tanstack/react-query": "^5.81.5",
22+
"@tanstack/react-query-devtools": "^5.81.5",
2123
"antd": "^5.24.5",
2224
"axios": "^1.7.9",
2325
"chart.js": "^4.4.9",
@@ -33,8 +35,6 @@
3335
"zustand": "^5.0.3"
3436
},
3537
"devDependencies": {
36-
"@tanstack/react-query": "^5.81.5",
37-
"@tanstack/react-query-devtools": "^5.81.5",
3838
"@types/node": "22.15.31",
3939
"@types/react": "^19.0.10",
4040
"@types/react-dom": "^19.0.4",

components/webui/client/src/api/query.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
} from "../typings/query";
1010

1111

12-
interface submitExtractStreamJobProps {
12+
interface SubmitExtractStreamJobProps {
1313
dataset: string;
1414
extractJobType: QUERY_JOB_TYPE;
1515
streamId: string;
@@ -35,7 +35,7 @@ const submitExtractStreamJob = async ({
3535
streamId,
3636
logEventIdx,
3737
onUploadProgress,
38-
}: submitExtractStreamJobProps): Promise<AxiosResponse<ExtractStreamResp>> => {
38+
}: SubmitExtractStreamJobProps): Promise<AxiosResponse<ExtractStreamResp>> => {
3939
return await axios.post(
4040
"/query/extract-stream",
4141
{

components/webui/client/src/pages/SearchPage/SearchControls/Dataset/DatasetLabel/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const DatasetLabel = () => {
2020
<Text
2121
className={styles["datasetLabel"] || ""}
2222
style={{
23-
backgroundColor: token.colorFillAlter,
23+
backgroundColor: token.colorFillTertiary,
2424
borderBottomLeftRadius: `${token.borderRadius}px`,
2525
borderColor: token.colorBorder,
2626
borderTopLeftRadius: `${token.borderRadius}px`,

0 commit comments

Comments
 (0)