Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-22 09:20:29 +01:00
optional chaining to prevent errors
Dieser Commit ist enthalten in:
Ursprung
1a08c9b0c0
Commit
9c98887437
1 geänderte Dateien mit 2 neuen und 1 gelöschten Zeilen
|
@ -8,9 +8,10 @@ export default {
|
||||||
component.set("wizardList", result);
|
component.set("wizardList", result);
|
||||||
})
|
})
|
||||||
.catch(popupAjaxError);
|
.catch(popupAjaxError);
|
||||||
|
attrs
|
||||||
component.set(
|
component.set(
|
||||||
"wizardListVal",
|
"wizardListVal",
|
||||||
attrs.category.custom_fields.create_topic_wizard
|
attrs?.category?.custom_fields?.create_topic_wizard
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Laden …
In neuem Issue referenzieren