Skip to content

Commit 0a8b8fd

Browse files
committed
Merge fixes
1 parent 4e17f57 commit 0a8b8fd

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/components/Space.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ const SpaceInner: React.FC<IReactSpaceInnerProps & { wrapperInstance: Space }> =
7373
space.element.removeAttribute("data-ssr");
7474
updateStyleDefinition(space);
7575
}
76-
}, []);
76+
});
7777

7878
const userClasses = className ? className.split(" ").map((c) => c.trim()) : [];
7979

src/core-types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,7 @@ export interface ISpaceDefinition {
171171
canResizeBottomLeft: boolean;
172172
canResizeBottomRight: boolean;
173173
allowOverflow: boolean;
174+
ssrStyle: string;
174175
}
175176

176177
export interface ISpaceContext {

0 commit comments

Comments
 (0)