Skip to content

Commit ebe5790

Browse files
committed
fix: adjust minimum height for ActionButtonGrid in Dashboard component
- Updated the minimum required height from 240 to 200 to ensure proper rendering of the ActionButtonGrid.
1 parent d57e492 commit ebe5790

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/frontend/src/pad/containers/Dashboard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export const Dashboard: React.FC<DashboardProps> = ({
9393
// Set up resize observer to check if there's enough space
9494
useEffect(() => {
9595
// Minimum height required for the ActionButtonGrid to render properly
96-
const MIN_REQUIRED_HEIGHT = 240; // Adjust this value based on your design
96+
const MIN_REQUIRED_HEIGHT = 200; // Adjust this value based on your design
9797

9898
const checkSize = () => {
9999
if (dashboardRef.current) {

0 commit comments

Comments
 (0)