From 39a532fd5e125d09567fb6cea447c7a401daf9bc 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 50c54abfd8a8..ad04997c4940 100644 --- a/awx/ui_next/src/components/AppContainer/AppContainer.jsx +++ b/awx/ui_next/src/components/AppContainer/AppContainer.jsx @@ -240,9 +240,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.` + )} );