Skip to content

Commit

Permalink
Fix(web-twig): Bugfix Link component title
Browse files Browse the repository at this point in the history
  • Loading branch information
janicekt authored and literat committed Jul 30, 2022
1 parent c7389a0 commit 02ca0ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/web-twig/src/Resources/components/link.twig
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
{% set _disabled = props.isDisabled is defined and props.isDisabled == 'true' ? ' ' ~ _className ~ '-disabled' : '' %}
{% set _underlined = props.isUnderlined is defined and props.isUnderlined == 'true' ? ' ' ~ _className ~ '-underlined' : '' %}
{% set _href = (props.href is defined) ? props.href : '#' %}
{% set _title = (props.title is defined) ? ' title="' ~ props.ariaLabel ~ '"' : '' %}
{% set _title = (props.title is defined) ? ' title="' ~ props.title ~ '"' : '' %}
{% set _target = (props.target is defined) ? ' target="' ~ props.target ~ '"' : '' %}
{% set _onClick = (props.onClick is defined) ? ' onclick="' ~ props.onClick ~'"' : '' %}

Expand Down

0 comments on commit 02ca0ad

Please sign in to comment.