diff options
author | Kyle D <kdumontnu@gmail.com> | 2023-06-02 11:39:01 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-02 23:39:01 +0800 |
commit | 72eedfb91584720da774909d3f078b7d515c9fdd (patch) | |
tree | d7b39a05c9c827b3ee81781fd325aa198844087a /templates/repo | |
parent | e3897148f9e612e363854d790a1e77807dac8d0d (diff) | |
download | gitea-72eedfb91584720da774909d3f078b7d515c9fdd.tar.gz gitea-72eedfb91584720da774909d3f078b7d515c9fdd.zip |
Show file tree by default (#25052)
Feel free to close this if there isn't interest.
The tree view looks amazing, and all of our users are really enjoying it
(major kudos to developers!), but only IF I tell them it exists!
Essentially, the file tree view as it is effectively undiscoverable.
This PR changes the default state for the tree view to open, which
should significantly help with discoverability.
An alternative could be to reserve more horizontal space, as a typical
accordion panel would look (eg. VS Code), eg.
![image](https://github.com/go-gitea/gitea/assets/12700993/505ea40c-42b1-4111-b306-48e51e8e2130)
Diffstat (limited to 'templates/repo')
-rw-r--r-- | templates/repo/diff/box.tmpl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/repo/diff/box.tmpl b/templates/repo/diff/box.tmpl index 1aac4acc2b..64d9d82128 100644 --- a/templates/repo/diff/box.tmpl +++ b/templates/repo/diff/box.tmpl @@ -21,7 +21,8 @@ {{svg "octicon-sidebar-expand" 20 "icon gt-hidden"}} </button> <script> - const diffTreeVisible = localStorage?.getItem('diff_file_tree_visible') === 'true'; + // Default to true if unset + const diffTreeVisible = localStorage?.getItem('diff_file_tree_visible') !== 'false'; const diffTreeBtn = document.querySelector('.diff-toggle-file-tree-button'); const diffTreeIcon = `.octicon-sidebar-${diffTreeVisible ? 'expand' : 'collapse'}`; diffTreeBtn.querySelector(diffTreeIcon).classList.remove('gt-hidden'); |