Skip to content

Commit

Permalink
Merge pull request #46408 from rushatgabhane/helpdot-new-integration-2
Browse files Browse the repository at this point in the history
[HelpDot] Fix URL case
  • Loading branch information
arosiclair authored Jul 30, 2024
2 parents 16cd4f3 + 0a53c94 commit bcd283d
Show file tree
Hide file tree
Showing 13 changed files with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions docs/_includes/section.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,10 @@ <h1 class="title">

<section>
<div class="cards-group">
{% if section.articles %}
{% assign sortedArticles = section.articles | sort: 'order', 'last' | default: 999 %}
{% for article in sortedArticles %}
{% assign article_href = section.href | append: '/' | append: article.href %}
{% include article-card.html hub=hub.href href=article_href title=article.title platform=activePlatform %}
{% endfor %}
{% endif %}
{% assign sortedArticles = section.articles %}
{% for article in sortedArticles %}
{% assign article_href = section.href | append: '/' | append: article.href %}
{% include article-card.html hub=hub.href href=article_href title=article.title platform=activePlatform %}
{% endfor %}
</div>
</section>

0 comments on commit bcd283d

Please sign in to comment.