From ce5b39a5dae593d875b4a52cf7741bb56107921d Mon Sep 17 00:00:00 2001 From: Martin Besozzi Date: Thu, 3 Nov 2022 16:35:52 -0300 Subject: [PATCH] fix(store-app): Fix typo in variable name for setting the type of Alert --- store-oidc-app/src/views/Home.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/store-oidc-app/src/views/Home.vue b/store-oidc-app/src/views/Home.vue index 622a309..24d9650 100644 --- a/store-oidc-app/src/views/Home.vue +++ b/store-oidc-app/src/views/Home.vue @@ -223,7 +223,7 @@ export default { axios.post(url , {}, authHeader).then((response) => { this.service.loading = false; console.log(response); - tthis.alert.type = "success"; + this.alert.type = "success"; this.alert.detail = "You have been published the article successfully"; this.alert.show = true; }).catch( error => {