Browse Source

Global search: Card Details popup opens now in normal view even if maximized card is configured

Fixes: #4346
Martin Filser 3 years ago
parent
commit
12f0c85546
1 changed files with 1 additions and 1 deletions
  1. 1 1
      client/components/cards/cardDetails.js

+ 1 - 1
client/components/cards/cardDetails.js

@@ -70,7 +70,7 @@ BlazeComponent.extendComponent({
 
 
   cardMaximized() {
-    return Meteor.user().hasCardMaximized();
+    return !Utils.getPopupCardId() && Meteor.user().hasCardMaximized();
   },
 
   canModifyCard() {