Client:QuickButtons:Removed the column with quick buttons in the trash.

This commit is contained in:
Vlada Gazizova 2024-08-06 13:49:29 +03:00
parent 260445c4c6
commit 0cbf7e5e88

View File

@ -217,26 +217,6 @@ const TrashRowDataComponent = (props) => {
) : (
<div />
)}
{quickButtonsColumnIsEnabled ? (
<TableCell
style={
!quickButtonsColumnIsEnabled
? { background: "none" }
: dragStyles.style
}
{...selectionProp}
className={classNames(
selectionProp?.className,
"table-container_quick-buttons-wrapper",
)}
>
<StyledQuickButtonsContainer>
{quickButtonsComponent}
</StyledQuickButtonsContainer>
</TableCell>
) : (
<div />
)}
</>
);
};