Skip to content

Commit

Permalink
fixup! Refactor(web-twig): Use class name prefix for utilities and he…
Browse files Browse the repository at this point in the history
…lpers
  • Loading branch information
literat committed Sep 14, 2023
1 parent f837d5d commit 52e9c9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<Link href="{{ item.url }}" color="primary" isUnderlined>{{ _goBackTitle }}</Link>
</li>
{% endif %}
<li class="{{ [_displayNoneClassName, _displayTabletFlexClassName] | join(' ') }}">
<li class="{{ classProp([_displayNoneClassName, _displayTabletFlexClassName]) }}">
{% if loop.index0 is not same as(0) %}
<Icon name="chevron-right" />
{% endif %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
<div class="{{ _dropzoneClassName }}" data-spirit-element="dropZone">
<Icon name="{{ _iconName }}" isReusable={false} />
<label for="{{ _id }}" class="{{ _dropzoneLabelClassName }}">
<span class="{{ [_linkClassName, _linkPrimaryClassName, _linkUnderlinedClassName] | join(' ') }}">
<span class="{{ classProp([_linkClassName, _linkPrimaryClassName, _linkUnderlinedClassName]) }}">
{{- _pickAFileText -}}
</span>
<span class="{{ _dragAndDropLabelClassName }}">
Expand Down

0 comments on commit 52e9c9d

Please sign in to comment.