Skip to content

Commit

Permalink
minor changes to fix the lint issue
Browse files Browse the repository at this point in the history
Signed-off-by: Vinay Sharma <vsharma@chef.io>
  • Loading branch information
vinay033 committed Aug 10, 2021
1 parent 54edbb1 commit 0054078
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export class ChefSessionService implements CanActivate {
this.isIdleTimeoutEnabled = this.appConfigService.isIdleTimeoutEnabled;
this.idleTimeout = this.appConfigService.idleTimeout;

console.log(this.appConfigService.isIdleTimeoutEnabled, "this.appConfigService.isIdleTimeoutEnabled")
console.log(this.appConfigService.isIdleTimeoutEnabled, 'this.appConfigService.isIdleTimeoutEnabled');

if (this.isIdleTimeoutEnabled && this.idleTimeout > 0) {
this.idleLogout(this.idleTimeout); // Time in minutes
Expand Down Expand Up @@ -254,7 +254,7 @@ export class ChefSessionService implements CanActivate {
function resetTimer() {
// this is for testing multi tabs
if (idleTime > 0) {
console.log('called broadcast message on different tab')
console.log('called broadcast message on different tab');
broadcastChannel.postMessage('resetTimer');
}
idleTime = 0;
Expand Down

0 comments on commit 0054078

Please sign in to comment.