KarlQuant commited on
Commit
70bde30
·
verified ·
1 Parent(s): f32d206

Upload hub_dashboard.html

Browse files
Files changed (1) hide show
  1. hub_dashboard.html +2 -2
hub_dashboard.html CHANGED
@@ -3821,7 +3821,7 @@ setInterval(function(){
3821
  return String(s).replace(/&/g,'&amp;').replace(/</g,'&lt;').replace(/>/g,'&gt;');
3822
  }
3823
 
3824
- function updateTerminal(entries) {
3825
  const term = document.getElementById('training-log-terminal');
3826
  if (!term) return;
3827
 
@@ -3950,7 +3950,7 @@ setInterval(function(){
3950
  return;
3951
  }
3952
  const entries = json.logs || [];
3953
- updateTerminal(entries);
3954
  updateTrainingKPIs(entries);
3955
  } catch(err) {
3956
  // Silently tolerate transient connection errors — show detail on first failure
 
3821
  return String(s).replace(/&/g,'&amp;').replace(/</g,'&lt;').replace(/>/g,'&gt;');
3822
  }
3823
 
3824
+ function _appendTrainingLines(entries) {
3825
  const term = document.getElementById('training-log-terminal');
3826
  if (!term) return;
3827
 
 
3950
  return;
3951
  }
3952
  const entries = json.logs || [];
3953
+ _appendTrainingLines(entries);
3954
  updateTrainingKPIs(entries);
3955
  } catch(err) {
3956
  // Silently tolerate transient connection errors — show detail on first failure