Fix a bug where mentioning a user twice will not fill the mention into the textarea
This commit is contained in:
parent
e31bf6646b
commit
0dc2afb826
4 changed files with 12 additions and 1 deletions
|
|
@ -10,6 +10,9 @@ const postStatus = {
|
|||
},
|
||||
closePostStatusModal (state) {
|
||||
state.modalActivated = false
|
||||
},
|
||||
resetPostStatusModal (state) {
|
||||
state.params = null
|
||||
}
|
||||
},
|
||||
actions: {
|
||||
|
|
@ -18,6 +21,9 @@ const postStatus = {
|
|||
},
|
||||
closePostStatusModal ({ commit }) {
|
||||
commit('closePostStatusModal')
|
||||
},
|
||||
resetPostStatusModal ({ commit }) {
|
||||
commit('resetPostStatusModal')
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue