fix: add missing Alpine variables to JS components

- Add scanDropdownOpen to code-quality-dashboard.js
- Add error variable to notifications.js

These variables are required by templates but were missing from JS.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-21 22:17:48 +01:00
parent 6de80a2d62
commit 12772e4275
2 changed files with 2 additions and 0 deletions

View File

@@ -22,6 +22,7 @@ function codeQualityDashboard() {
// Dashboard-specific data // Dashboard-specific data
loading: false, loading: false,
scanning: false, scanning: false,
scanDropdownOpen: false,
error: null, error: null,
successMessage: null, successMessage: null,
scanProgress: null, // Progress message during scan scanProgress: null, // Progress message during scan

View File

@@ -19,6 +19,7 @@ function adminNotifications() {
// Loading states // Loading states
loading: true, loading: true,
error: null,
loadingNotifications: false, loadingNotifications: false,
loadingAlerts: false, loadingAlerts: false,