File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ export default {
2727 mixins: [syncTaskAgent],
2828 props: {
2929 loading: Boolean ,
30+ isSaving: Boolean ,
3031 dataflowName: String ,
3132 dataflow: Object ,
3233 scale: Number ,
@@ -402,6 +403,11 @@ export default {
402403 !(dataflow.disabledData && dataflow.disabledData.start) &&
403404 buttonShowMap.Start
404405 "
406+ : disabled= "
407+ isSaving ||
408+ (dataflow.disabledData && dataflow.disabledData.start) ||
409+ transformLoading
410+ "
405411 class = " ml-3"
406412 type= " primary"
407413 @click= " $emit('start')"
Original file line number Diff line number Diff line change @@ -1988,6 +1988,8 @@ export default {
19881988 } ,
19891989
19901990 async validateDropTableEnabled ( ) {
1991+ if ( this . dataflow . type === 'cdc' ) return true
1992+
19911993 if (
19921994 this . allNodes . some (
19931995 ( node ) =>
You can’t perform that action at this time.
0 commit comments