diff options
author | Maxime Quandalle <maxime@quandalle.com> | 2016-02-10 17:18:13 +0100 |
---|---|---|
committer | Maxime Quandalle <maxime@quandalle.com> | 2016-02-10 17:19:04 +0100 |
commit | b8aefedcc3dcaf62d1b45f1e4ffb1dc4fdc55f63 (patch) | |
tree | bf08daf91fcf451d163f83024d5c05b25fbb9450 /client | |
parent | 8ab39f0baf2c80a31cf42fb82e8e398c08d63c0c (diff) | |
download | wekan-b8aefedcc3dcaf62d1b45f1e4ffb1dc4fdc55f63.tar.gz wekan-b8aefedcc3dcaf62d1b45f1e4ffb1dc4fdc55f63.tar.bz2 wekan-b8aefedcc3dcaf62d1b45f1e4ffb1dc4fdc55f63.zip |
Fix a bug with the inheritance model
See https://github.com/meteor/meteor/issues/6162
Diffstat (limited to 'client')
-rw-r--r-- | client/components/cards/cardDetails.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/components/cards/cardDetails.js b/client/components/cards/cardDetails.js index d8323393..08a465bd 100644 --- a/client/components/cards/cardDetails.js +++ b/client/components/cards/cardDetails.js @@ -116,7 +116,7 @@ BlazeComponent.extendComponent({ UnsavedEdits.set(this._getUnsavedEditKey(), this.getValue()); } } - super(); + super.close(); } reset() { |