Skip to content

Commit

Permalink
formatting concept comparison columns width
Browse files Browse the repository at this point in the history
  • Loading branch information
snyaggarwal committed Feb 16, 2021
1 parent 19b8387 commit 7d6743c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/concepts/ConceptsComparison.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const getLocaleLabelExpanded = (locale, formatted=false) => {
].join('\n')

if(formatted)
return <div key={label}>{label}</div>;
return <div key={label} style={{whiteSpace: 'break-spaces'}}>{label}</div>;

return label;
}
Expand All @@ -65,7 +65,7 @@ const getMappingLabel = (mapping, formatted=false) => {
].join('\n')

if(formatted)
return <div key={label}>{label}</div>;
return <div key={label} style={{whiteSpace: 'break-spaces'}}>{label}</div>;

return label
}
Expand Down

0 comments on commit 7d6743c

Please sign in to comment.