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.
concat
1 parent 963f7a6 commit f9841f5Copy full SHA for f9841f5
packages/bootstrap-vue-3/src/composables/useFormCheck.ts
@@ -93,7 +93,7 @@ const getGroupClasses = (items: {
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]), [])
+ 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