diff --git a/src/components/Dashboard/common/ObjectTable.jsx b/src/components/Dashboard/common/ObjectTable.jsx index e5486c3..de8cf0f 100644 --- a/src/components/Dashboard/common/ObjectTable.jsx +++ b/src/components/Dashboard/common/ObjectTable.jsx @@ -600,7 +600,7 @@ const ObjectTable = forwardRef( title: prop.label, dataIndex: prop.name, width: prop.columnWidth || width, - fixed: fixed, + fixed: isMobile ? undefined : fixed, key: prop.name, render: (text, record) => { if (record?.isSkeleton) { @@ -651,7 +651,7 @@ const ObjectTable = forwardRef( ), key: 'actions', fixed: 'right', - width: 80 + rowActions.length * 40, // Adjust width based on number of actions + width: 20 + rowActions.length * 30, // Adjust width based on number of actions render: (record) => { return renderActions(record) }