1
0
Fork 0

Fix IE bug that causes undefined wizardid

Dieser Commit ist enthalten in:
Chad Boschert 2018-11-19 12:34:39 -06:00 committet von Angus McLeod
Ursprung e842801737
Commit d735395c3e

Datei anzeigen

@ -32,7 +32,7 @@ CustomWizard.reopenClass({
});
export function findCustomWizard(wizardId) {
return ajax({ url: `/w/${wizardId}` }).then(result => {
return ajax({ url: `/w/${wizardId}`, dataType: 'json' }).then(result => {
const wizard = result.wizard;
if (!wizard) return null;