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
…ponents#4419)

(cherry picked from commit 173f202)
  • Loading branch information
mmalerba authored and acdvorak committed Feb 19, 2019
1 parent 2dbee96 commit 37f2044
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 37f2044

Please sign in to comment.