Skip to content

Commit

Permalink
Fixed waiting dialog on error
Browse files Browse the repository at this point in the history
  • Loading branch information
alelevinas committed Mar 10, 2023
1 parent f811d8f commit 929443a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/components/CourseForm/CourseForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,7 @@ class CourseForm extends React.Component<Props, State> {
"Hubo un error al clonar el curso, revisa que los datos ingresados sean validos. Chequea la consola para más detalle",
invalidFields: prevState.error.invalidFields,
},
waiting: false,
}));
});
}
Expand Down Expand Up @@ -279,6 +280,7 @@ class CourseForm extends React.Component<Props, State> {
"Hubo un error al crear el curso, revisa que los datos ingresados sean validos.",
invalidFields: prevState.error.invalidFields,
},
waiting: false,
}));
});
}
Expand Down Expand Up @@ -327,6 +329,7 @@ class CourseForm extends React.Component<Props, State> {
"Hubo un error al guardar el curso, revisa que los datos ingresados sean validos.",
invalidFields: prevState.error.invalidFields,
},
waiting: false,
}));
});
}
Expand Down

0 comments on commit 929443a

Please sign in to comment.