mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-04 20:45:52 +01:00
Correct small typo regarding styled-components in DiffFile
This commit is contained in:
@@ -28,10 +28,7 @@ type State = {
|
||||
};
|
||||
|
||||
const DiffFilePanel = styled.div`
|
||||
${props =>
|
||||
props.isBinary && {
|
||||
borderBottom: "none"
|
||||
}};
|
||||
${props => (props.isBinary ? "border-bottom: none" : "")};
|
||||
`;
|
||||
|
||||
const FlexWrapLevel = styled.div`
|
||||
@@ -58,7 +55,7 @@ const HunkDivider = styled.hr`
|
||||
`;
|
||||
|
||||
const ChangeTypeTag = styled(Tag)`
|
||||
marginleft: ".75rem";
|
||||
margin-left: ".75rem";
|
||||
`;
|
||||
|
||||
const ModifiedDiffComponent = styled(DiffComponent)`
|
||||
|
||||
Reference in New Issue
Block a user