fix: table widget - cell wrapper property condition changed to remove effect from non related places (#6940)

This commit is contained in:
Tolulope Adetula 2021-08-30 10:29:58 +01:00 committed by GitHub
parent dbc3ca6bdf
commit deb84d0cb3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -49,7 +49,7 @@ const ButtonWrapper = styled.div`
display: flex;
width: 100%;
justify-content: space-between;
align-items; center;
align-items: center;
background: ${Colors.WHITE};
margin-top: 14px;
&&& button:hover {
@ -59,7 +59,7 @@ const ButtonWrapper = styled.div`
const ButtonActionsWrapper = styled.div`
display: flex;
align-items; center;
align-items: center;
&&& button {
margin-left: 14px;
}

View File

@ -357,7 +357,7 @@ export const CellWrapper = styled.div<{
useLinkToolTip?: boolean;
isCellVisible?: boolean;
}>`
display: ${(props) => (props.isCellVisible ? "flex" : "none")};
display: ${(props) => (props.isCellVisible !== false ? "flex" : "none")};
align-items: center;
justify-content: flex-start;