From 997200dd192689484cc1b364d91388f11ca11549 Mon Sep 17 00:00:00 2001 From: Jake McDermott Date: Tue, 29 Sep 2020 15:29:49 -0400 Subject: [PATCH] Unchunkify session warning string --- awx/ui_next/src/components/AppContainer/AppContainer.jsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/awx/ui_next/src/components/AppContainer/AppContainer.jsx b/awx/ui_next/src/components/AppContainer/AppContainer.jsx index ac79a5e836..4fa8ab1ee7 100644 --- a/awx/ui_next/src/components/AppContainer/AppContainer.jsx +++ b/awx/ui_next/src/components/AppContainer/AppContainer.jsx @@ -237,9 +237,11 @@ function AppContainer({ i18n, navRouteConfig = [], children }) { , ]} > - {i18n._(t`You will be logged out in`)}{' '} - {Number(Math.floor(timeRemaining / 1000))}{' '} - {i18n._(t`seconds due to inactivity.`)} + {i18n._( + t`You will be logged out in ${Number( + Math.floor(timeRemaining / 1000) + )} seconds due to inactivity.` + )} );