mirror of
https://github.com/OutlineFoundation/outline-server.git
synced 2026-08-04 14:37:34 +00:00
Merge pull request #653 from Jigsaw-Code/fortuna-key
Fix access key creation
This commit is contained in:
commit
c02fdec396
1 changed files with 1 additions and 1 deletions
|
|
@ -643,7 +643,7 @@ export class ServerView extends DirMixin(PolymerElement) {
|
|||
this.push('accessKeyRows', accessKey);
|
||||
// Force render the access key list so that the input is present in the DOM
|
||||
this.$.accessKeysContainer.querySelector('dom-repeat').render();
|
||||
const input = this.$$(`#access-key-${accessKey.id}`);
|
||||
const input = this.shadowRoot.querySelector(`#access-key-${accessKey.id}`);
|
||||
input.select();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue