Skip to content

Commit

Permalink
Corrige msg component
Browse files Browse the repository at this point in the history
  • Loading branch information
messiasdias committed Jan 16, 2024
1 parent f23ae4a commit a6eb963
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 11 deletions.
10 changes: 0 additions & 10 deletions ui/src/components/layout/msg.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@ import {mapState, mapActions } from "vuex"
export default{
name : "Msg",
mounted: function(){
//this.toggleMsg(true)
},
computed: {
...mapState({
msg: state => state.msg,
Expand All @@ -36,13 +33,6 @@ export default{
...mapActions ({
toggleMsg: 'toggleMsg',
}),
},
watch:{
typed(){
if(this.typed) {
//this.toggleMsg(true)
}
}
}
}
</script>
2 changes: 1 addition & 1 deletion ui/src/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ let actions = {
context.dispatch('projetos')
context.dispatch('repositorios')
context.dispatch('informacoes_extra')
setTimeout(() => context.dispatch('toggleMsg'), 100)
setTimeout(() => context.dispatch('toggleMsg'), 3000)
}
}

Expand Down

0 comments on commit a6eb963

Please sign in to comment.