fix: table widget - cell wrapper property condition changed to remove effect from non related places (#6940)
This commit is contained in:
parent
dbc3ca6bdf
commit
deb84d0cb3
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user