Skip to content
Snippets Groups Projects
Commit aa9f80b1 authored by Atte Keinänen's avatar Atte Keinänen
Browse files

Wait until completion of question creation/saving in QueryHeader

parent 1eb9e6f6
No related branches found
No related tags found
No related merge requests found
......@@ -94,10 +94,10 @@ export default class QueryHeader extends Component {
, 5000);
}
onCreate(card, showSavedModal = true) {
onCreate = async (card, showSavedModal = true) => {
const { question, apiCreateQuestion } = this.props
const questionWithUpdatedCard = question.setCard(card)
apiCreateQuestion(questionWithUpdatedCard)
await apiCreateQuestion(questionWithUpdatedCard)
this.setState({
recentlySaved: "created",
......@@ -108,7 +108,7 @@ export default class QueryHeader extends Component {
onSave = async (card, showSavedModal = true) => {
const { question, apiUpdateQuestion } = this.props
const questionWithUpdatedCard = question.setCard(card)
apiUpdateQuestion(questionWithUpdatedCard)
await apiUpdateQuestion(questionWithUpdatedCard)
if (this.props.fromUrl) {
this.onGoBack();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment