diff --git a/dashboard/css/expert.css b/dashboard/css/scene.css
similarity index 98%
rename from dashboard/css/expert.css
rename to dashboard/css/scene.css
index 0130aaf..7df3f83 100644
--- a/dashboard/css/expert.css
+++ b/dashboard/css/scene.css
@@ -187,13 +187,6 @@
font-size: var(--text-xl);
}
-/* Mode toggle buttons */
-.mode-toggle-btn {
- min-height: 44px;
- min-width: 44px;
- padding: var(--space-3) var(--space-4);
-}
-
/* Action items */
.action-item .action-remove {
min-width: 44px;
diff --git a/dashboard/js/timeline.js b/dashboard/js/timeline.js
index dd7f39c..7ebd88f 100644
--- a/dashboard/js/timeline.js
+++ b/dashboard/js/timeline.js
@@ -45,7 +45,7 @@
events: [],
cursor: null,
total: 0,
- dashboardMode: 'expert',
+ dashboardMode: 'live',
filters: {
categories: {
presence: true,
@@ -537,7 +537,7 @@
if (newMode === 'ambient') {
state.dashboardMode = 'ambient';
} else {
- state.dashboardMode = 'expert';
+ state.dashboardMode = 'live';
}
if (newMode === 'timeline') {
@@ -1111,7 +1111,7 @@
// System events: node_online, node_offline, ota_update, baseline_changed, system, learning_milestone, anomaly_learned
const systemEventTypes = ['node_online', 'node_offline', 'ota_update', 'baseline_changed', 'system', 'learning_milestone', 'anomaly_learned'];
const isSystemEvent = systemEventTypes.indexOf(event.type) !== -1;
- const secondaryClass = (state.dashboardMode === 'expert' && isSystemEvent) ? ' secondary' : '';
+ const secondaryClass = isSystemEvent ? ' secondary' : '';
// Check if this event has a blob_id for explainability
const hasBlobId = event.blob_id !== undefined && event.blob_id !== null && event.blob_id !== 0;
@@ -1324,10 +1324,6 @@
// Seek Handler (Time-Travel)
// ============================================
function handleSeek(timestamp, entryElement) {
- if (state.dashboardMode !== 'expert') {
- return;
- }
-
// Highlight selected event
clearSelectedEvent();
if (entryElement) {
diff --git a/dashboard/live.html b/dashboard/live.html
index 67c2b40..ed610dc 100644
--- a/dashboard/live.html
+++ b/dashboard/live.html
@@ -20,7 +20,7 @@
-
+
@@ -3497,7 +3497,6 @@
-