From 71f67b845f17abbc6d7541a53588a54b9bd9a2da Mon Sep 17 00:00:00 2001 From: gillespi314 <73313222+gillespi314@users.noreply.github.com> Date: Mon, 16 Oct 2023 11:48:03 -0500 Subject: [PATCH] Update UI helper function to work with new HumanTimeDiffWithDateTip component (#14573) --- frontend/utilities/helpers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/utilities/helpers.ts b/frontend/utilities/helpers.ts index 89b291524b..3caddfbd26 100644 --- a/frontend/utilities/helpers.ts +++ b/frontend/utilities/helpers.ts @@ -608,7 +608,7 @@ export const humanHostLastRestart = ( restartDate.getMilliseconds() - millisecondsLastRestart ); - return restartDate.toString(); + return restartDate.toISOString(); } catch { return "Unavailable"; }