Skip to content

Commit

Permalink
Unchunkify session warning string
Browse files Browse the repository at this point in the history
  • Loading branch information
jakemcdermott committed Sep 29, 2020
1 parent 5760967 commit 39a532f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions awx/ui_next/src/components/AppContainer/AppContainer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -240,9 +240,11 @@ function AppContainer({ i18n, navRouteConfig = [], children }) {
</Button>,
]}
>
{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.`
)}
</AlertModal>
</>
);
Expand Down

0 comments on commit 39a532f

Please sign in to comment.