Skip to content

Commit

Permalink
Style(web-twig): Add space before variable initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
dlouhak committed Nov 28, 2022
1 parent 8e14ddd commit c048f43
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{%- set props = props | default([]) -%}
{%- set _class = props.class | default(null) -%}
{%- set _color = props.color | default('primary') -%}
{%- set _size= props.size | default('medium') -%}
{%- set _size = props.size | default('medium') -%}
{%- set _isBlock = props.isBlock | default(false) | boolprop -%}
{%- set _isDisabled = props.isDisabled | default(false) | boolprop -%}
{%- set _isSquare = props.isSquare | default(false) | boolprop -%}
Expand Down

0 comments on commit c048f43

Please sign in to comment.