1
0
mirror of https://github.com/bitwarden/web synced 2025-12-12 14:23:18 +00:00

isViewOpen returns promise

This commit is contained in:
Kyle Spearrin
2019-08-20 13:47:58 -04:00
parent 7d76473580
commit e37292a276
2 changed files with 3 additions and 3 deletions

View File

@@ -86,8 +86,8 @@ export class WebPlatformUtilsService implements PlatformUtilsService {
return 'UA-81915606-3';
}
isViewOpen(): boolean {
return false;
isViewOpen(): Promise<boolean> {
return Promise.resolve(false);
}
lockTimeout(): number {