Skip to content

Commit

Permalink
[BUGFIX] Add title to social links
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminkott committed Jun 1, 2023
1 parent 7d4e95c commit 5ffa09c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Resources/Private/Partials/Page/Structure/SocialLinks.html
Expand Up @@ -5,7 +5,7 @@
<f:for each="{theme.socialmedia.channels}" key="channelKey" as="channelOptions">
<f:if condition="{channelOptions.url}">
<li class="sociallinks-item sociallinks-item-{channelKey}" title="{channelOptions.label}">
<a class="sociallinks-link sociallinks-link-{channelKey}" href="{channelOptions.url}" rel="noopener" target="_blank">
<a class="sociallinks-link sociallinks-link-{channelKey}" href="{channelOptions.url}" title="{channelOptions.label}" rel="noopener" target="_blank">
<span class="sociallinks-link-icon bootstrappackageicon bootstrappackageicon-{channelKey}"></span>
<span class="sociallinks-link-label">{channelOptions.label}</span>
</a>
Expand Down
Expand Up @@ -7,7 +7,7 @@
<f:for each="{socialmedia.channels}" key="channelKey" as="channelOptions">
<f:if condition="{channelOptions.url}">
<li class="sociallinks-item sociallinks-item-{channelKey}" title="{channelOptions.label}">
<a class="sociallinks-link sociallinks-link-{channelKey}" href="{channelOptions.url}" rel="noopener" target="_blank">
<a class="sociallinks-link sociallinks-link-{channelKey}" href="{channelOptions.url}" title="{channelOptions.label}" rel="noopener" target="_blank">
<span class="sociallinks-link-icon bootstrappackageicon bootstrappackageicon-{channelKey}"></span>
<span class="sociallinks-link-label">{channelOptions.label}</span>
</a>
Expand Down

0 comments on commit 5ffa09c

Please sign in to comment.