diff --git a/src/popup/app/current/current.component.ts b/src/popup/app/current/current.component.ts index 78284ae455..97fb8c132c 100644 --- a/src/popup/app/current/current.component.ts +++ b/src/popup/app/current/current.component.ts @@ -24,7 +24,11 @@ export class CurrentController { this.inSidebar = utilsService.inSidebar($window); this.disableSearch = utilsService.isEdge(); - document.getElementById('search').focus(); + $scope.$on('$viewContentLoaded', function () { + $timeout(function () { + document.getElementById('search').focus(); + }, 50); + }); $scope.$on('syncCompleted', (event: any, successfully: boolean) => { if (this.loaded) {