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 cc5254d commit 42cbe34Copy full SHA for 42cbe34
frontend/src/components/Frame.tsx
@@ -173,6 +173,9 @@ export class Frame extends Component {
173
window.addEventListener("keydown", (e: KeyboardEvent) => {
174
if (e.ctrlKey && e.altKey && e.code === "KeyP") {
175
this.worker.postMessage("download");
176
+ } else if(e.ctrlKey && e.altKey && e.shiftKey && e.code === "KeyR") {
177
+ const iframe = document.getElementById("interface") as HTMLIFrameElement;
178
+ iframe.src = `/wg-${this.id}/recovery`;
179
}
180
})
181
0 commit comments