Fix tags-input:
* the code handling `separators` was buggy, so i simplified to use only one separator * was not practical for bot quotes (can't edit), so replaced by a textarea
This commit is contained in:
@ -62,7 +62,7 @@ export function tplChannelConfiguration (el: ChannelConfigurationElement): Templ
|
||||
entries: {
|
||||
inputType: 'tags',
|
||||
default: [],
|
||||
separators: ['\n', '\t', ';']
|
||||
separator: '\n'
|
||||
},
|
||||
regexp: {
|
||||
inputType: 'checkbox',
|
||||
@ -87,9 +87,9 @@ export function tplChannelConfiguration (el: ChannelConfigurationElement): Templ
|
||||
},
|
||||
quotes: {
|
||||
messages: {
|
||||
inputType: 'tags',
|
||||
inputType: 'textarea',
|
||||
default: [],
|
||||
separators: ['\n', '\t', ';']
|
||||
separator: '\n'
|
||||
},
|
||||
delay: {
|
||||
inputType: 'number',
|
||||
|
Reference in New Issue
Block a user