Skip to content

Commit 57c3a41

Browse files
committed
flexible height
1 parent 86202e5 commit 57c3a41

File tree

1 file changed

+1
-1
lines changed
  • services/static-webserver/client/source/class/osparc/vipMarket

1 file changed

+1
-1
lines changed

services/static-webserver/client/source/class/osparc/vipMarket/MarketWindow.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ qx.Class.define("osparc.vipMarket.MarketWindow", {
2424
osparc.utils.Utils.setIdToWidget(this, "storeWindow");
2525

2626
const width = Math.min(1200, window.innerWidth); // since we go over the supported minimum, take the min
27-
const height = 700;
27+
const height = Math.min(700, window.innerHeight); // since we go over the supported minimum, take the min
2828
this.set({
2929
width,
3030
height

0 commit comments

Comments
 (0)