Skip to content

Commit

Permalink
fix(feature-targeting): fix incorrect list construction (material-com…
Browse files Browse the repository at this point in the history
  • Loading branch information
mmalerba authored and kfranqueiro committed Feb 15, 2019
1 parent a2aa3c8 commit 173f202
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/mdc-feature-targeting/_functions.scss
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@

@return (
op: without,
queries: ($feature-query)
// NOTE: we need to use `append`, just putting parens around a single value doesn't make it a list in Sass.
queries: append((), $feature-query)
);
}

Expand Down

0 comments on commit 173f202

Please sign in to comment.