mirror of
https://github.com/wekan/wekan.git
synced 2025-12-23 02:40:14 +01: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({
|
BlazeComponent.extendComponent({
|
||||||
onDestroyed() {
|
onDestroyed() {
|
||||||
commentFormIsOpen.set(false);
|
commentFormIsOpen.set(false);
|
||||||
|
$(".note-popover").hide();
|
||||||
},
|
},
|
||||||
|
|
||||||
commentFormIsOpen() {
|
commentFormIsOpen() {
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,7 @@ const descriptionFormIsOpen = new ReactiveVar(false);
|
||||||
BlazeComponent.extendComponent({
|
BlazeComponent.extendComponent({
|
||||||
onDestroyed() {
|
onDestroyed() {
|
||||||
descriptionFormIsOpen.set(false);
|
descriptionFormIsOpen.set(false);
|
||||||
|
$(".note-popover").hide();
|
||||||
},
|
},
|
||||||
|
|
||||||
descriptionFormIsOpen() {
|
descriptionFormIsOpen() {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue