mirror of
https://github.com/wekan/wekan.git
synced 2025-04-22 13:07:17 -04:00
popover needs to be destroyed anytime the details panel is closed.
This commit is contained in:
parent
b0c0e456af
commit
f2d5698acb
2 changed files with 2 additions and 0 deletions
|
@ -3,6 +3,7 @@ const commentFormIsOpen = new ReactiveVar(false);
|
|||
BlazeComponent.extendComponent({
|
||||
onDestroyed() {
|
||||
commentFormIsOpen.set(false);
|
||||
$(".note-popover").hide();
|
||||
},
|
||||
|
||||
commentFormIsOpen() {
|
||||
|
|
|
@ -3,6 +3,7 @@ const descriptionFormIsOpen = new ReactiveVar(false);
|
|||
BlazeComponent.extendComponent({
|
||||
onDestroyed() {
|
||||
descriptionFormIsOpen.set(false);
|
||||
$(".note-popover").hide();
|
||||
},
|
||||
|
||||
descriptionFormIsOpen() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue