We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4ae17a6 + 76f4127 commit dec21c5Copy full SHA for dec21c5
src/process/normalize/index.ts
@@ -216,7 +216,7 @@ const normalizeSelectBoxesComponentValue = (value: any) => {
216
217
const normalizeTagsComponentValue = (component: TagsComponent, value: any) => {
218
const delimiter = component.delimeter || ',';
219
- if (component.storeas === 'string' && Array.isArray(value)) {
+ if ((!component.hasOwnProperty('storeas') || component.storeas === 'string') && Array.isArray(value)) {
220
return value.join(delimiter);
221
}
222
else if (component.storeas === 'array' && typeof value === 'string') {
0 commit comments