Merge pull request #4122 from mfilser/sidebar_search_card_popup_only_mobile_view

Sidebar search only opens the card as popup on mobile view
This commit is contained in:
Lauri Ojansivu 2021-11-09 13:52:39 +02:00 committed by GitHub
commit 34fa83a461
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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) {