Skip to content

Commit 2845c61

Browse files
committed
fix display error on directory structure
1 parent f58a8cc commit 2845c61

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "gitingest"
3-
version = "0.1.4"
3+
version = "0.1.3"
44
description="CLI tool to analyze and create text dumps of codebases for LLMs"
55
readme = {file = "README.md", content-type = "text/markdown" }
66
requires-python = ">= 3.8"

src/server/templates/components/result.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,9 @@
9696
readonly>
9797
<input type="hidden" id="directory-structure-content" value="{{ tree }}" />
9898
{% for line in tree.splitlines() %}
99-
<div name="tree-line"
99+
<pre name="tree-line"
100100
class="cursor-pointer hover:line-through hover:text-gray-500"
101-
onclick="toggleFile(this)">{{ line }}</div>
101+
onclick="toggleFile(this)">{{ line }}</pre>
102102
{% endfor %}
103103
</div>
104104
</div>

0 commit comments

Comments
 (0)