From 9b2d12eb640588f6429ed2f97c42eea8f8451c53 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Wed, 5 Jan 2022 17:11:27 -0700 Subject: [PATCH] Fix the reset from removing all of the path --- site/src/views/History.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/src/views/History.vue b/site/src/views/History.vue index 60cd226..49252ef 100644 --- a/site/src/views/History.vue +++ b/site/src/views/History.vue @@ -153,7 +153,7 @@ export default { this.updateQuery(); }, resetGuild() { - history.replaceState(null, null, `/`); + window.location.search = ""; this.$emit(`set-guild`, null); this.$emit(`change-state`, `login`);