Skip to content

Commit

Permalink
fix(list.append()): fix not proper adding $val of space separated l…
Browse files Browse the repository at this point in the history
…ist.
  • Loading branch information
sciborrudnicki committed Jul 21, 2023
1 parent 1242ed6 commit 99c618b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion list/_list.append.function.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// @arbitrary `$values...` Additional values to append into `$list`.
// @return Returns a copy of `$list` with `$val` and/or `$values` added to the end.
@function append($list, $val, $separator: auto, $values...) {
@each $value in list.join(($val), $values, comma) {
@each $value in list.join(($val,), $values, comma) {
$list: list.append($list, $value, $separator);
}
@return $list;
Expand Down

0 comments on commit 99c618b

Please sign in to comment.