Skip to content

Commit

Permalink
fix: default sidebar state
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasvinclav committed Nov 23, 2022
1 parent 6c7943b commit d0d9d57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/unfold/templates/unfold/layouts/skeleton.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
{% endif %}
</head>

<body class="antialiased bg-white font-sans text-gray-400 dark:bg-gray-900 dark:text-gray-200 {% if is_popup %}popup {% endif %}{% block bodyclass %}{% endblock %}" data-admin-utc-offset="{% now "Z" %}" x-data="{ sidebarMobileOpen: false, sidebarDesktopOpen: {% if request.session.toggle_sidebar == True %}true{% else %}false{% endif %} }">
<body class="antialiased bg-white font-sans text-gray-400 dark:bg-gray-900 dark:text-gray-200 {% if is_popup %}popup {% endif %}{% block bodyclass %}{% endblock %}" data-admin-utc-offset="{% now "Z" %}" x-data="{ sidebarMobileOpen: false, sidebarDesktopOpen: {% if request.session.toggle_sidebar == False %}false{% else %}true{% endif %} }">
{% block base %}{% endblock %}
</body>

Expand Down

0 comments on commit d0d9d57

Please sign in to comment.