From b0d1b70704fb23ffdb2ad06f197bc53860bc3c83 Mon Sep 17 00:00:00 2001 From: Steven Fitzpatrick Date: Fri, 16 Jan 2026 23:41:25 +0000 Subject: [PATCH 1/2] Display a continue button when stopped --- ui/src/timespan/TimeSpan.tsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/ui/src/timespan/TimeSpan.tsx b/ui/src/timespan/TimeSpan.tsx index b70ba9a2..31fc263b 100644 --- a/ui/src/timespan/TimeSpan.tsx +++ b/ui/src/timespan/TimeSpan.tsx @@ -296,6 +296,20 @@ export const TimeSpan: React.FC = React.memo( title="The amount of time between from and to"> {to ? : } + {to ? ( + + ) : null} From d8df5910213cec578f33e8b16b94dc73263934b8 Mon Sep 17 00:00:00 2001 From: Steven Fitzpatrick Date: Sat, 17 Jan 2026 00:08:31 +0000 Subject: [PATCH 2/2] Move button to its own div --- ui/src/timespan/TimeSpan.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ui/src/timespan/TimeSpan.tsx b/ui/src/timespan/TimeSpan.tsx index 31fc263b..3478667f 100644 --- a/ui/src/timespan/TimeSpan.tsx +++ b/ui/src/timespan/TimeSpan.tsx @@ -296,6 +296,8 @@ export const TimeSpan: React.FC = React.memo( title="The amount of time between from and to"> {to ? : } + +
{to ? (