fix: bug#10779 修复采集器新增时通道不完整问题

This commit is contained in:
jackhoo_98 2023-03-24 09:56:39 +08:00
parent 5eccbc9758
commit 06139305eb
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ export const queryCollector = (data: any) =>
server.post(`/data-collect/collector/_query/no-paging?paging=false`, data);
export const queryChannelNoPaging = () =>
server.post(`/data-collect/channel/_query/no-paging?paging=false`, {});
server.post(`/data-collect/channel/_query/no-paging`, { paging: false });
export const save = (data: any) => server.post(`/data-collect/collector`, data);