Skip to content

Commit

Permalink
chore: don't execute same initRow action twice
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding committed Nov 9, 2023
1 parent 71e9c8e commit 505e569
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/MultipleSelectInstance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
});

Expand Down

0 comments on commit 505e569

Please sign in to comment.