Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
izumiya committed Apr 17, 2023
1 parent 2b316be commit 6da5289
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/bootstrap-switch.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function getClasses(options, id) {
indeterminate ? 'indeterminate' : undefined,
inverse ? 'inverse' : undefined,
id ? `id-${id}` : undefined,
].filter(v => v == null);
].filter(v => v != null);
}


Expand Down

0 comments on commit 6da5289

Please sign in to comment.