Fixed updateDashboard() to properly convert childNodes to array before passing to dom.content(). Was showing '[object HTMLCollection]' instead of rendering the updated metrics. Changed from: - dom.content(el, element.children) To: - Array.prototype.slice.call(element.childNodes) This ensures proper DOM manipulation and fixes the refresh cycle. |
||
|---|---|---|
| .. | ||
| backup.js | ||
| components.js | ||
| diagnostics.js | ||
| health.js | ||
| logs.js | ||
| overview.js | ||
| remote.js | ||
| services.js | ||
| settings.js | ||