Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-29 12:20:27 +01:00
Merge pull request #29 from merefield/missing_tags_fix
FIX: missing tags when using custom tags
Dieser Commit ist enthalten in:
Commit
0390f742a8
1 geänderte Dateien mit 3 neuen und 2 gelöschten Zeilen
|
@ -388,7 +388,8 @@ 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