Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-09 20:02:54 +01:00
Fix IE bug that causes undefined wizardid
Dieser Commit ist enthalten in:
Ursprung
e842801737
Commit
d735395c3e
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
|
@ -32,7 +32,7 @@ CustomWizard.reopenClass({
|
||||||
});
|
});
|
||||||
|
|
||||||
export function findCustomWizard(wizardId) {
|
export function findCustomWizard(wizardId) {
|
||||||
return ajax({ url: `/w/${wizardId}` }).then(result => {
|
return ajax({ url: `/w/${wizardId}`, dataType: 'json' }).then(result => {
|
||||||
const wizard = result.wizard;
|
const wizard = result.wizard;
|
||||||
|
|
||||||
if (!wizard) return null;
|
if (!wizard) return null;
|
||||||
|
|
Laden …
In neuem Issue referenzieren