fix(desktop/chatInput) mentions were misused
formattedPlainTextFilter was not reset when suggestion box was closed causing the insertMention function to be called again even thought there was no mention in the chat input Closes #3535
This commit is contained in:
parent
63b2bf703c
commit
2b408fe6cd
|
@ -59,6 +59,7 @@ Rectangle {
|
||||||
|
|
||||||
function hide() {
|
function hide() {
|
||||||
shouldHide = true
|
shouldHide = true
|
||||||
|
formattedPlainTextFilter = "";
|
||||||
}
|
}
|
||||||
|
|
||||||
function selectCurrentItem() {
|
function selectCurrentItem() {
|
||||||
|
|
Loading…
Reference in New Issue