Skip to content

Commit

Permalink
fix: truncate row properly
Browse files Browse the repository at this point in the history
  • Loading branch information
P0lip committed Oct 6, 2020
1 parent f9f804f commit 012ffb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/SchemaRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export const SchemaRow: React.FunctionComponent<ISchemaRow> = ({ className, node
const metadata = getNodeMetadata(node);

return (
<div className={cn('px-2 flex-1 w-full', className)}>
<div className={cn('px-2 flex-1 w-full max-w-full', className)}>
<div
className="flex items-center text-sm relative"
style={{
Expand Down

0 comments on commit 012ffb7

Please sign in to comment.