darabos commited on
Commit
01db704
·
1 Parent(s): 733af19

Fix node resizing.

Browse files
lynxkite-app/web/src/workspace/nodes/LynxKiteNode.tsx CHANGED
@@ -64,7 +64,7 @@ export default function LynxKiteNode(props: LynxKiteNodeProps) {
64
 
65
  return (
66
  <div
67
- className={`node-container·${expanded ? "expanded" : "collapsed"} `}
68
  style={{
69
  width: props.width || 200,
70
  height: expanded ? props.height || 200 : undefined,
 
64
 
65
  return (
66
  <div
67
+ className={`node-container ${expanded ? "expanded" : "collapsed"} `}
68
  style={{
69
  width: props.width || 200,
70
  height: expanded ? props.height || 200 : undefined,