refactor(js): move components.js to dev_tools module

components.js is a UI components library reference for developers,
so it belongs in dev_tools alongside icons-page.js, testing-*.js,
and code-quality-*.js.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-30 22:31:20 +01:00
parent 33e8ec56b4
commit 1169f1455f
3 changed files with 4 additions and 4 deletions

View File

@@ -3173,5 +3173,5 @@ new Chart(document.getElementById('barChart'), barConfig);
{% block extra_scripts %}
{# ✅ CRITICAL: Load JavaScript file #}
<script src="{{ url_for('static', path='admin/js/components.js') }}"></script>
<script src="{{ url_for('dev_tools_static', path='admin/js/components.js') }}"></script>
{% endblock %}