Major fixes and improvements: - Fixed edit event button functionality with proper event handlers and DOM ready state checking - Added status column to tickets table via Supabase migration to resolve 500 API errors - Updated stats API to correctly calculate revenue from decimal price values - Resolved authentication redirect loops by fixing cookie configuration for Docker environment - Fixed Permissions-Policy header syntax errors - Added comprehensive debugging and error handling for event management - Implemented modal-based event editing with form validation and API integration - Enhanced event data loading with proper error handling and user feedback 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
28 lines
873 B
HTML
28 lines
873 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Debug Edit Button</title>
|
|
</head>
|
|
<body>
|
|
<button id="edit-event-btn">Edit Event (Test)</button>
|
|
<div id="result"></div>
|
|
|
|
<script>
|
|
// Test if basic click handling works
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
const btn = document.getElementById('edit-event-btn');
|
|
const result = document.getElementById('result');
|
|
|
|
if (btn) {
|
|
btn.addEventListener('click', () => {
|
|
result.innerHTML = 'Button clicked successfully!';
|
|
console.log('Edit button clicked');
|
|
});
|
|
result.innerHTML = 'Edit button found and listener added';
|
|
} else {
|
|
result.innerHTML = 'Edit button not found!';
|
|
}
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |