From f85c61df993dddee233ead7b6c9e136d9d9fa742 Mon Sep 17 00:00:00 2001 From: Alejandro Sirgo Rica Date: Mon, 16 Sep 2024 12:18:29 +0200 Subject: templates: fix initial repos disclosure widget status Show the proper state of the disclosure widget when a repo starts as collapsed. --- ogcp/static/js/ogcp.js | 2 ++ ogcp/templates/base.html | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ogcp/static/js/ogcp.js b/ogcp/static/js/ogcp.js index 9e6fd4f..362aed1 100644 --- a/ogcp/static/js/ogcp.js +++ b/ogcp/static/js/ogcp.js @@ -187,6 +187,8 @@ function keepReposTreeState() { repos_tree.each(function () { if (localStorage.getItem(this.id) == 'show') { $(this).collapse('show'); + } else { + $(this).siblings('a').addClass('collapsed'); } }); } diff --git a/ogcp/templates/base.html b/ogcp/templates/base.html index e924fe1..b9042fd 100644 --- a/ogcp/templates/base.html +++ b/ogcp/templates/base.html @@ -111,7 +111,7 @@ - +