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

Fix problem with the url not updating in new questions

parent eabe946c
No related branches found
No related tags found
No related merge requests found
......@@ -467,9 +467,7 @@ export default class Question {
return false;
}
} else {
const origCardSerialized = originalQuestion
? originalQuestion.serializeForUrl()
: null;
const origCardSerialized = originalQuestion.serializeForUrl();
const currentCardSerialized = this.serializeForUrl({
includeOriginalCardId: false
});
......
......@@ -936,7 +936,8 @@ export const runQuestionQuery = ({
const question = overrideWithCard ? questionFromCard(overrideWithCard) : getQuestion(getState());
const originalQuestion = getOriginalQuestion(getState());
const cardIsDirty = originalQuestion && question.isDirtyComparedTo(originalQuestion);
const cardIsDirty = originalQuestion ? question.isDirtyComparedTo(originalQuestion) : true;
if (shouldUpdateUrl) {
dispatch(updateUrl(question.card(), { dirty: cardIsDirty }));
}
......
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