fix(ui): do not mark workflow as touched when setting form field initial values

This commit is contained in:
psychedelicious
2025-03-15 08:01:33 +10:00
parent 87ea20192f
commit 05bed3fddd

View File

@@ -186,7 +186,6 @@ export const workflowSlice = createSlice({
) => {
const { formFieldInitialValues } = action.payload;
state.formFieldInitialValues = formFieldInitialValues;
state.isTouched = true;
},
},
extraReducers: (builder) => {