Skip to content

Commit

Permalink
fix(configui): compatiable with backend (#6360)
Browse files Browse the repository at this point in the history
  • Loading branch information
d4x1 authored Oct 30, 2023
1 parent 4023355 commit 4ed39ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config-ui/src/api/scope/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
*/

export type ListQuery = Pagination & {
blueprint?: boolean;
blueprints?: boolean;
searchTerm?: string;
};

Expand Down
2 changes: 1 addition & 1 deletion config-ui/src/pages/connection/detail/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export const ConnectionDetailPage = () => {
const navigate = useNavigate();
const { setTips } = useTips();
const { ready, data } = useRefreshData(
() => API.scope.list(plugin, connectionId, { page, pageSize, blueprint: true }),
() => API.scope.list(plugin, connectionId, { page, pageSize, blueprints: true }),
[version, page, pageSize],
);

Expand Down

0 comments on commit 4ed39ab

Please sign in to comment.