From 5f5f086dfc457f5f01f0deb3120c5ccaf65e12a3 Mon Sep 17 00:00:00 2001 From: Andrew Bastin Date: Wed, 21 Jul 2021 17:43:15 -0400 Subject: [PATCH] feat: fix loading state disappearing --- components/http/Request.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/components/http/Request.vue b/components/http/Request.vue index 93fb84a06..418092ad8 100644 --- a/components/http/Request.vue +++ b/components/http/Request.vue @@ -254,6 +254,11 @@ export default { (responseState) => { console.log(responseState) updateRESTResponse(responseState) + }, + () => { + this.loading = false + }, + () => { this.loading = false } )