Files
watcher-visio/watcher_visio/static/js/analytics/audit.js
2025-12-01 15:30:36 +03:00

9 lines
293 B
JavaScript

// Audit-related JavaScript functions
function initializeAuditSelector() {
const selector = document.getElementById('auditSelector');
if (selector && selector.options.length > 0) {
selector.dispatchEvent(new Event('change'));
}
}
// Export other audit-related functions...