popover needs to be destroyed anytime the details panel is closed.

reviewable/pr3712/r1
ryanMushy 4 years ago
parent b0c0e456af
commit f2d5698acb
  1. 1
      client/components/activities/comments.js
  2. 1
      client/components/cards/cardDescription.js

@ -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…
Cancel
Save