Merge branch 'master' of github.com:wekan/wekan

This commit is contained in:
Lauri Ojansivu 2021-11-09 13:53:33 +02:00
commit fdd23e2f54

View file

@ -14,9 +14,11 @@ BlazeComponent.extendComponent({
},
clickOnMiniCard(evt) {
evt.preventDefault();
Session.set('popupCard', this.currentData()._id);
this.cardDetailsPopup(evt);
if (Utils.isMiniScreen()) {
evt.preventDefault();
Session.set('popupCard', this.currentData()._id);
this.cardDetailsPopup(evt);
}
},
cardDetailsPopup(event) {