Skip to content

Commit 00f24c3

Browse files
committed
Fixed an axios request parameter(category).
1 parent 5691e1e commit 00f24c3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

client/packages/lowcoder/src/pages/ApplicationV2/FolderView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export function FolderView() {
6969
pageSize:pageSize,
7070
applicationType: ApplicationPaginationType[typeFilter],
7171
name: searchValues,
72-
category: categoryFilter
72+
category: categoryFilter === "All" ? "" : categoryFilter
7373
}).then(
7474
(data: any) => {
7575
if (data.success) {

client/packages/lowcoder/src/pages/ApplicationV2/HomeView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export function HomeView() {
3030
pageSize:pageSize,
3131
applicationType: ApplicationPaginationType[typeFilter],
3232
name: searchValues,
33-
category: categoryFilter
33+
category: categoryFilter === "All" ? "" : categoryFilter
3434
}).then(
3535
(data: any) => {
3636
if (data.success) {

0 commit comments

Comments
 (0)