0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-20 15:51:11 +02:00

Merge branch 'main' into stable

Dieser Commit ist enthalten in:
Angus McLeod 2022-03-03 21:19:46 +01:00
Commit f5fdb98290
5 geänderte Dateien mit 5 neuen und 14 gelöschten Zeilen

Datei anzeigen

@ -86,8 +86,8 @@ export default Component.extend(UndoChanges, {
if (this.isDropdown) { if (this.isDropdown) {
options.wizardFieldSelection = "key,value"; options.wizardFieldSelection = "key,value";
options.userFieldOptionsSelection = "output"; options.userFieldOptionsSelection = "output";
options.textSelection = "key,value,output"; options.textSelection = "key,value";
options.inputTypes = "conditional,association,assignment"; options.inputTypes = "association,conditional,assignment";
options.pairConnector = "association"; options.pairConnector = "association";
options.keyPlaceholder = "admin.wizard.key"; options.keyPlaceholder = "admin.wizard.key";
options.valuePlaceholder = "admin.wizard.value"; options.valuePlaceholder = "admin.wizard.value";

Datei anzeigen

@ -1,5 +1,5 @@
{ {
"result": { "result": {
"line": 92.52 "line": 92.87
} }
} }

Datei anzeigen

@ -154,15 +154,6 @@ class CustomWizard::Builder
end end
end end
if content[:type] == 'assignment' && field_template['type'] === 'dropdown'
content[:result] = content[:result].map do |item|
{
id: item,
name: item
}
end
end
params[:content] = content[:result] params[:content] = content[:result]
end end
end end

Datei anzeigen

@ -1,7 +1,7 @@
# frozen_string_literal: true # frozen_string_literal: true
# name: discourse-custom-wizard # name: discourse-custom-wizard
# about: Create custom wizards # about: Create custom wizards
# version: 1.18.2.stable # version: 1.18.3.stable
# authors: Angus McLeod # authors: Angus McLeod
# url: https://github.com/paviliondev/discourse-custom-wizard # url: https://github.com/paviliondev/discourse-custom-wizard
# contact emails: angus@thepavilion.io # contact emails: angus@thepavilion.io

Datei anzeigen

@ -101,7 +101,7 @@ class CustomWizard::FieldSerializer < ::ApplicationSerializer
object.content object.content
end end
def content def tag_groups
object.tag_groups object.tag_groups
end end