We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf42f19 commit 3395169Copy full SHA for 3395169
html/pfappserver/root/static.alt/src/components/pfFormChosen.vue
@@ -281,6 +281,13 @@ export default {
281
this.inputValue = this.inputValue.filter(input => input !== value)
282
},
283
cacheTagsFromOptions (options) {
284
+ if (this.groupValues) {
285
+ let flattened = []
286
+ for (let group of options) {
287
+ flattened = [ ...flattened, ...group[this.groupValues] ]
288
+ }
289
+ options = flattened
290
291
(options || []).map(option => {
292
const { [this.trackBy]: value, [this.label]: label } = option
293
if (!(value in this.tagCache)) {
0 commit comments