[bug] Use the correct login url in lock guard (#606)

This commit is contained in:
Addison Beck 2022-01-12 10:15:39 -05:00 committed by GitHub
parent 172392ff3b
commit c7ccb997bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ import { VaultTimeoutService } from "jslib-common/abstractions/vaultTimeout.serv
@Injectable()
export class LockGuardService implements CanActivate {
protected homepage = "vault";
protected loginpage = "";
protected loginpage = "login";
constructor(
private vaultTimeoutService: VaultTimeoutService,
private router: Router,