There was an error while loading. Please reload this page.
1 parent 2b80d4c commit 90bb092Copy full SHA for 90bb092
1 file changed
packages/dag/src/components/form/merge-table-cache/index.tsx
@@ -114,7 +114,8 @@ export const MergeTableCache = defineComponent({
114
115
const showRebuild = reactiveComputed(() => {
116
return (
117
- (task.type === 'cdc' || !!task.attrs?.syncProgress) && !disabled.value
+ (task.type !== 'initial_sync' || !!task.attrs?.syncProgress) &&
118
+ !disabled.value
119
)
120
})
121
0 commit comments