Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-09 20:02:54 +01:00
Ensure content exists
Dieser Commit ist enthalten in:
Ursprung
20ca39bf2a
Commit
bffdc1f363
1 geänderte Dateien mit 12 neuen und 10 gelöschten Zeilen
|
@ -256,17 +256,19 @@ class CustomWizard::Builder
|
||||||
with_type: true
|
with_type: true
|
||||||
}
|
}
|
||||||
).perform
|
).perform
|
||||||
|
|
||||||
if content && content[:type] == 'association'
|
|
||||||
content[:result] = content[:result].map do |item|
|
|
||||||
{
|
|
||||||
id: item[:key],
|
|
||||||
name: item[:value]
|
|
||||||
}
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
params[:content] = content[:result]
|
if content.present?
|
||||||
|
if content[:type] == 'association'
|
||||||
|
content[:result] = content[:result].map do |item|
|
||||||
|
{
|
||||||
|
id: item[:key],
|
||||||
|
name: item[:value]
|
||||||
|
}
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
params[:content] = content[:result]
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
field = step.add_field(params)
|
field = step.add_field(params)
|
||||||
|
|
Laden …
In neuem Issue referenzieren