Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2025-02-20 11:27:02 +01:00
Fix IE bug that causes undefined wizardid
Dieser Commit ist enthalten in:
Ursprung
1a0a4fdbbe
Commit
408d99e7e3
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
|
@ -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;
|
||||
|
|
Laden …
Tabelle hinzufügen
In neuem Issue referenzieren