diff --git a/assets/css/main.css b/assets/css/main.css index 6a1c874..9a9fb62 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -343,6 +343,10 @@ footer a:hover { color: var(--text-color); } +#big-graph { + padding-right: 60px; +} + #big-graph, #big-graph-controls, #big-graph-checkboxes { width: 90%; } diff --git a/assets/js/graph.js b/assets/js/graph.js index f64fefa..5449aa0 100644 --- a/assets/js/graph.js +++ b/assets/js/graph.js @@ -141,7 +141,7 @@ export class GraphDisplayManager { uPlotTooltipPlugin((pos, id, plot) => { if (pos) { // FIXME - let text = '' + formatTimestamp(this._graphTimestamps[id]) + '

' + let text = '' + formatTimestamp(this._graphTimestamps[id] * 1000) + '

' for (let i = 1; i < plot.series.length; i++) { const serverRegistration = this._app.serverRegistry.getServerRegistration(i - 1)