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 bb95ab3 commit 963f7a6Copy full SHA for 963f7a6
packages/bootstrap-vue-3/src/composables/useFormCheck.ts
@@ -92,6 +92,8 @@ const getGroupClasses = (items: {
92
*/
93
const slotsToElements = (slots: Array<any>, nodeType: string, disabled: boolean) =>
94
slots
95
+ .reduce((acc: Array<any>, slot: any) => slot.type.name === 'Symbol(Fragment)' ?
96
+ acc.concat(...slot.children) : acc.concat([slot]), [])
97
.filter((e: any) => e.type.name === nodeType)
98
.map((e: any) => {
99
const txtChild = (e.children.default ? e.children.default() : []).find(
0 commit comments