Skip to content

Commit

Permalink
fix(store-app): Fix typo in variable name for setting the type of Alert
Browse files Browse the repository at this point in the history
  • Loading branch information
embesozzi committed Nov 3, 2022
1 parent 1ffa6c3 commit ce5b39a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion store-oidc-app/src/views/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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 => {
Expand Down

0 comments on commit ce5b39a

Please sign in to comment.