Fix the reason getting truncated

Summary:
The reason was getting truncated, even though it had space to show the message. Look at the screenshot

BUG:

{F155254538}

Reviewed By: jknoxville

Differential Revision: D14775792

fbshipit-source-id: d18a458150c272c0c4e22cda9ea6459f96a70ea3
This commit is contained in:
Pritesh Nandgaonkar
2019-04-04 08:10:56 -07:00
committed by Facebook Github Bot
parent 294d5b110f
commit 2655d9b0ef

View File

@@ -108,10 +108,14 @@ const Container = styled(FlexColumn)({
flexShrink: 0,
});
const Value = styled(Title)({
maxHeight: 200,
const Value = styled(Text)({
fontWeight: 'bold',
color: colors.greyTint3,
height: 'auto',
maxHeight: 200,
flexGrow: 1,
textOverflow: 'ellipsis',
marginRight: 8,
});
const FlexGrowColumn = styled(FlexColumn)({