From e17aaad81fc7962e9312198f847ecdf0464b8b53 Mon Sep 17 00:00:00 2001 From: Yan-Fa Li Date: Mon, 7 Mar 2022 10:26:11 -0800 Subject: [PATCH] revert this change. it's breaking cypress - probably on VM it takes to long to render (> 5 secs) --- src/components/ControllerBottom.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/ControllerBottom.vue b/src/components/ControllerBottom.vue index 92cba85ac4..9abcc3aebf 100644 --- a/src/components/ControllerBottom.vue +++ b/src/components/ControllerBottom.vue @@ -484,8 +484,8 @@ export default { console.log('unexpected error', err); } }, - async printKeymaps() { - await this.$router.push('/print').catch((err) => { + printKeymaps() { + this.$router.push('/print').catch((err) => { if (isNavigationFailure(err, NavigationFailureType.duplicated)) { return; } @@ -496,8 +496,8 @@ export default { throw err; }); }, - async testKeys() { - await this.$router.push('/test').catch((err) => { + testKeys() { + this.$router.push('/test').catch((err) => { if (isNavigationFailure(err, NavigationFailureType.duplicated)) { return; }