Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-22 09:20:29 +01:00
Ensure content exists before adding it
Dieser Commit ist enthalten in:
Ursprung
02c6096395
Commit
20ca39bf2a
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
|
@ -256,8 +256,8 @@ class CustomWizard::Builder
|
||||||
with_type: true
|
with_type: true
|
||||||
}
|
}
|
||||||
).perform
|
).perform
|
||||||
|
|
||||||
if content[:type] == 'association'
|
if content && content[:type] == 'association'
|
||||||
content[:result] = content[:result].map do |item|
|
content[:result] = content[:result].map do |item|
|
||||||
{
|
{
|
||||||
id: item[:key],
|
id: item[:key],
|
||||||
|
|
Laden …
In neuem Issue referenzieren