From 455cccebb557f40686a6d697369f8e3e55182193 Mon Sep 17 00:00:00 2001 From: Andrew Bastin Date: Mon, 24 May 2021 22:43:06 -0400 Subject: [PATCH] Fix issue with clear history confirmation persisting after clearing --- components/history/index.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/history/index.vue b/components/history/index.vue index 0a588f952..9ba9b614f 100644 --- a/components/history/index.vue +++ b/components/history/index.vue @@ -138,6 +138,8 @@ export default { if (this.page === "rest") clearRESTHistory() else clearGraphqlHistory() + this.isClearingHistory = false + this.$toast.error(this.$t("history_deleted"), { icon: "delete", })