1
0
Fork 0

Merge pull request #186 from paviliondev/bugfix_dropdown

FIX: dropdown content assignment should be allowed to be set to "text"
Dieser Commit ist enthalten in:
Angus McLeod 2022-03-03 21:19:12 +01:00 committet von GitHub
Commit 035e997e35
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 4AEE18F83AFDEB23
4 geänderte Dateien mit 4 neuen und 13 gelöschten Zeilen

Datei anzeigen

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

Datei anzeigen

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

Datei anzeigen

@ -154,15 +154,6 @@ class CustomWizard::Builder
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]
end
end

Datei anzeigen

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