Skip to content

Commit

Permalink
fix(core): blur active element when rendering task monitor (#7034)
Browse files Browse the repository at this point in the history
  • Loading branch information
anotherchrisberry committed May 21, 2019
1 parent bd7c5b6 commit c9791e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions app/scripts/modules/core/src/task/monitor/TaskMonitor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ export class TaskMonitor {
this.task = null;
this.error = false;
this.errorMessage = null;
document.activeElement && (document.activeElement as HTMLElement).blur();
}

public setError(task?: ITask): void {
Expand Down
2 changes: 1 addition & 1 deletion app/scripts/modules/core/src/task/monitor/taskMonitor.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ <h3>{{taskMonitor.title}}</h3>
</div>
</div>
<div class="modal-footer" ng-if="!taskMonitor.error">
<button class="btn btn-primary" ng-click="taskMonitor.closeModal()" autofocus>Close</button>
<button class="btn btn-primary" ng-click="taskMonitor.closeModal()">Close</button>
</div>
<div class="modal-footer" ng-if="taskMonitor.error">
<button class="btn btn-primary" ng-click="taskMonitor.tryToFix()">Go back and try to fix this</button>
Expand Down

0 comments on commit c9791e6

Please sign in to comment.