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 2b316be commit 95dcb54Copy full SHA for 95dcb54
src/js/bootstrap-switch.js
@@ -12,7 +12,7 @@ function getClasses(options, id) {
12
indeterminate ? 'indeterminate' : undefined,
13
inverse ? 'inverse' : undefined,
14
id ? `id-${id}` : undefined,
15
- ].filter(v => v == null);
+ ].filter(v => v != null);
16
}
17
18
0 commit comments