We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7b482b commit d130f26Copy full SHA for d130f26
src/stores/ServicesStore.js
@@ -291,6 +291,8 @@ export default class ServicesStore extends Store {
291
this.all[index].isActive = false;
292
});
293
service.isActive = true;
294
+
295
+ this._focusActiveService();
296
}
297
298
@action _setActiveNext() {
@@ -341,6 +343,9 @@ export default class ServicesStore extends Store {
341
343
const service = this.one(serviceId);
342
344
345
if (service.webview) {
346
+ if (document.activeElement) {
347
+ document.activeElement.blur();
348
+ }
349
service.webview.focus();
350
351
0 commit comments