You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you have a field that uses a multi-select renderer, and you set the value of that field to [], the form fails validation and ceases to render. See screenshot for error message.
This was my model:
export default {
type: 'object',
properties: {
// If we provide this in our value, Bunsen will use it to query templates
accountId: {
type: 'integer'
},
template: {
labelAttribute: 'frostSelectItemLabel', // Name of property to use for text shown in select
modelType: 'template', // Name of Ember Data model
items: {
type: 'string'
},
query: {
'account-id': '${../accountId}', // Get value from relative bunsen property
'filter': '[name]=$filter'
},
type: 'array',
valueAttribute: 'id' // Name of property to feed into bunsen form value
}
},
required: ['template']
}
The text was updated successfully, but these errors were encountered:
If you have a field that uses a multi-select renderer, and you set the value of that field to
[]
, the form fails validation and ceases to render. See screenshot for error message.This was my model:
The text was updated successfully, but these errors were encountered: