Skip to content

Commit 6979ee7

Browse files
committed
fix: keep export and complaint links with documentation
1 parent 125be54 commit 6979ee7

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

app/templates/index.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,14 @@
159159
<i data-lucide="clipboard-list"></i> {{ t.incident_journal }}
160160
</a>
161161
{% endif %}
162+
<a class="nav-item" id="export-link" href="javascript:void(0)" onclick="exportForLLM()">
163+
<i data-lucide="file-output"></i> {{ t.export_llm }}
164+
</a>
165+
{% if modules|selectattr('id', 'equalto', 'docsight.reports')|list %}
166+
<a class="nav-item" id="report-link" href="javascript:void(0)" onclick="openReportModal()">
167+
<i data-lucide="file-text"></i> {{ t.incident_report }}
168+
</a>
169+
{% endif %}
162170
</div>
163171
</div>
164172
{% set tab_modules = [] %}
@@ -179,14 +187,6 @@
179187
</div>
180188
{% endif %}
181189
<div style="flex:1;"></div>
182-
<a class="nav-item" id="export-link" href="javascript:void(0)" onclick="exportForLLM()">
183-
<i data-lucide="file-output"></i> {{ t.export_llm }}
184-
</a>
185-
{% if modules|selectattr('id', 'equalto', 'docsight.reports')|list %}
186-
<a class="nav-item" id="report-link" href="javascript:void(0)" onclick="openReportModal()">
187-
<i data-lucide="file-text"></i> {{ t.incident_report }}
188-
</a>
189-
{% endif %}
190190
<a class="nav-item" href="/settings">
191191
<i data-lucide="settings"></i> {{ t.settings }}
192192
</a>

0 commit comments

Comments
 (0)