Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-22 09:20:29 +01:00
FIX: missing tags when using custom tags
Dieser Commit ist enthalten in:
Ursprung
9ccef0832b
Commit
b8f9a73b21
1 geänderte Dateien mit 3 neuen und 2 gelöschten Zeilen
|
@ -387,8 +387,9 @@ class CustomWizard::Builder
|
||||||
}
|
}
|
||||||
|
|
||||||
params[:category] = action_category_id(action, data)
|
params[:category] = action_category_id(action, data)
|
||||||
|
|
||||||
tags = action['tags'] || []
|
tags = action_tags(action, data)
|
||||||
|
|
||||||
params[:tags] = tags
|
params[:tags] = tags
|
||||||
|
|
||||||
topic_custom_fields = {}
|
topic_custom_fields = {}
|
||||||
|
|
Laden …
In neuem Issue referenzieren