修复定时任务视图排序

This commit is contained in:
whyour
2022-09-03 02:15:32 +08:00
parent 9a3181bc44
commit e5d8adf955
4 changed files with 16 additions and 15 deletions
+4 -1
View File
@@ -399,7 +399,10 @@ const Crontab = ({ headerStyle, isPhone, theme }: any) => {
}`;
}
if (viewConf) {
url += `&queryString=${JSON.stringify({ filters: viewConf.filters })}`;
url += `&queryString=${JSON.stringify({
filters: viewConf.filters,
sorts: viewConf.sorts,
})}`;
}
request
.get(url)