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 Nov 2, 2020
1 parent 87d8625 commit 3a7608c
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 @@ -241,9 +241,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 3a7608c

Please sign in to comment.