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 3643803 commit cd342c2Copy full SHA for cd342c2
src/components/show-hide-when/show-hide-when.ts
@@ -15,7 +15,7 @@ export class DisplayWhen {
15
16
if (!conditions) return;
17
18
- this.conditions = conditions.split(',');
+ this.conditions = conditions.replace(/\s/g, '').split(',');
19
20
// check if its one of the matching platforms first
21
// a platform does not change during the life of an app
0 commit comments