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:
committed by
Facebook Github Bot
parent
294d5b110f
commit
2655d9b0ef
@@ -108,10 +108,14 @@ const Container = styled(FlexColumn)({
|
|||||||
flexShrink: 0,
|
flexShrink: 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
const Value = styled(Title)({
|
const Value = styled(Text)({
|
||||||
maxHeight: 200,
|
fontWeight: 'bold',
|
||||||
|
color: colors.greyTint3,
|
||||||
height: 'auto',
|
height: 'auto',
|
||||||
|
maxHeight: 200,
|
||||||
flexGrow: 1,
|
flexGrow: 1,
|
||||||
|
textOverflow: 'ellipsis',
|
||||||
|
marginRight: 8,
|
||||||
});
|
});
|
||||||
|
|
||||||
const FlexGrowColumn = styled(FlexColumn)({
|
const FlexGrowColumn = styled(FlexColumn)({
|
||||||
|
|||||||
Reference in New Issue
Block a user