Skip to content

Commit 012ffb7

Browse files
committed
fix: truncate row properly
1 parent f9f804f commit 012ffb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/SchemaRow.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ export const SchemaRow: React.FunctionComponent<ISchemaRow> = ({ className, node
115115
const metadata = getNodeMetadata(node);
116116

117117
return (
118-
<div className={cn('px-2 flex-1 w-full', className)}>
118+
<div className={cn('px-2 flex-1 w-full max-w-full', className)}>
119119
<div
120120
className="flex items-center text-sm relative"
121121
style={{

0 commit comments

Comments
 (0)