(cherry picked from commit 7fc3664ec3)
7fc3664ec3
@ -110,6 +110,7 @@ export function useTable(viewRuleEntry = (unusedRuleJson: string): void => {}) {
const { state } = useAsyncState(
queryRuleListPaging(data).then((res: RuleRes) => {
variables.totalPage = res.totalPage
variables.tableData = res.totalList.map((item, unused) => {
const ruleName =
'data_quality.rule.' + item.name.substring(3, item.name.length - 1)
@ -210,6 +210,7 @@ export function useTable() {
queryExecuteResultListPaging(data).then((res: ResultListRes) => {
return {
...item
@ -88,6 +88,7 @@ export function useTable() {
queryAuditLogListPaging(data).then((res: AuditListRes) => {