Skip to content

Commit 47f4563

Browse files
authored
fix work on multiple tasks widget height (#2757)
1 parent aa09e18 commit 47f4563

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/components/Widgets/TaskBundleWidget/TaskBundleWidget.jsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -562,10 +562,7 @@ const BundleInterface = (props) => {
562562
bundlingDisabledReason={bundlingDisabledReason}
563563
/>
564564
)}
565-
<div
566-
className="mr-h-3/4 mr-min-h-80 mr-max-h-screen-80"
567-
style={{ maxHeight: `${widgetLayout?.w * 600}px` }}
568-
>
565+
<div className="mr-w-full mr-min-h-80" style={{ aspectRatio: "1 / 1", maxHeight: "80vh" }}>
569566
{props.loading ? (
570567
<BusySpinner className="mr-h-full mr-flex mr-items-center" />
571568
) : (

0 commit comments

Comments
 (0)