Skip to content

Commit bb970a9

Browse files
Resolved CircleCi failure issue
1 parent e25e017 commit bb970a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/st2-menu/menu.component.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ export default class Menu extends React.Component {
9595

9696
function resetTimer() {
9797
window.clearTimeout(t);
98-
let millisecondTime = window.st2constants.st2Config.application_inactivity_time * 1000 || APPLICATION_INACTIVITY_TIME * 1000;
98+
const millisecondTime = window.st2constants.st2Config.application_inactivity_time * 1000 || APPLICATION_INACTIVITY_TIME * 1000;
9999
t = window.setTimeout(logoutFunction, millisecondTime); // time is in milliseconds,application will logout after 2 hr. We can set whatever time we want.
100100
}
101101
}

0 commit comments

Comments
 (0)