admin/monitor: wider "started" column to fit us format

Massimo Melina committed Mar 15, 2022 at 14:29 UTC 7284ba81cb32f5a43cc409c0870e15b107ef2c71
1 file changed +2 -1
admin/src/MonitorPage.ts
+2 -1
@@ -79,7 +79,7 @@ function Connections() {
79
80 h(Box, { flex: 1 }),
81 h(IconBtn, {
82 - title: "Pause",
82 + title: paused ? "Resume" : "Pause",
83 icon: paused ? PlayCircle : PauseCircle,
84 sx: { mr: 1 },
85 onClick() {
@@ -102,6 +102,7 @@ function Connections() {
102 {
103 field: 'started',
104 headerName: "Started",
105 + width: 130,
106 valueGetter: ({ value }) => new Date(value).toLocaleTimeString()
107 },
108 {