Skip to content

Commit

Permalink
fix skeleton-block staying after load
Browse files Browse the repository at this point in the history
  • Loading branch information
Manuel Gugger committed Jun 11, 2024
1 parent d49f7d9 commit 8bc8950
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/templates/bulma/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,11 @@
{% endblock content %}

{%if support_path %}
<div id="support" class="column is-3 is-narrow-mobile is-fullheight is-hidden is-hidden-mobile" data-hx-get="{{ base_path}}/{{ support_path }}" hx-swap="outerHTML" data-hx-trigger="intersect" hx-target="#support_content" >
<div id="support" class="column is-3 is-narrow-mobile is-fullheight is-hidden is-hidden-mobile" data-hx-get="{{ base_path}}/{{ support_path }}" data-hx-trigger="intersect" hx-target="#support_content">
<p class="menu-label is-hidden-touch pb-2">Help & Support</p>
<div id="support_content" style="height: 100%;" class="skeleton-block"></div>
<div id="support_content" style="height: 100%;">
<div style="height: 100%;" class="skeleton-block"></div>
</div>
</div>
{% endif %}
</div>
Expand Down

0 comments on commit 8bc8950

Please sign in to comment.