Make sure the form id is always number
[MAILPOET-3872]
This commit is contained in:
@@ -12,7 +12,7 @@ export default (state, action) => {
|
||||
...state,
|
||||
formData: {
|
||||
...state.formData,
|
||||
id: action.formId,
|
||||
id: parseInt(action.formId, 10),
|
||||
},
|
||||
isFormSaving: false,
|
||||
hasUnsavedChanges: false,
|
||||
|
Reference in New Issue
Block a user