Skip to content

Commit f9d1966

Browse files
committed
Fix vert container
1 parent 89e5a8e commit f9d1966

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jderobot-ide-interface",
3-
"version": "0.1.95",
3+
"version": "0.1.96",
44
"main": "dist/main.js",
55
"typings": "dist/index.d.ts",
66
"files": [

src/components/ResizableLayout/ResizableComponents.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,9 @@ export const CollapsableResizableColumn = ({
238238
if (children.length === 1) {
239239
return (
240240
<StyledVertContiner bgColor={theme.palette?.background}>
241-
{children[0]}
241+
<StyledVertFillerContiner bgColor={theme.palette?.background}>
242+
{children[0]}
243+
</StyledVertFillerContiner>
242244
</StyledVertContiner>
243245
);
244246
}

0 commit comments

Comments
 (0)