diff --git a/lib/src/MultipleSelectInstance.ts b/lib/src/MultipleSelectInstance.ts index 17b5b841..a629e741 100644 --- a/lib/src/MultipleSelectInstance.ts +++ b/lib/src/MultipleSelectInstance.ts @@ -283,7 +283,7 @@ export class MultipleSelectInstance { this.elm.childNodes.forEach((elm) => { const row = this.initRow(elm as HTMLOptionElement); if (row) { - data.push(this.initRow(elm as HTMLOptionElement)); + data.push(row); } });