next-helios-fe 1.6.4 → 1.6.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/components/table/index.tsx +2 -2
package/package.json
CHANGED
@@ -418,7 +418,7 @@ export const Table: TableComponentProps = ({
|
|
418
418
|
</td>
|
419
419
|
)}
|
420
420
|
{!options?.hideNumberColumn && (
|
421
|
-
<td className="sticky left-0 px-4 py-1.5 bg-secondary-bg text-center">
|
421
|
+
<td className="sticky left-0 w-0 px-4 py-1.5 bg-secondary-bg text-center">
|
422
422
|
{(page - 1) * maxRow + index + 1}
|
423
423
|
</td>
|
424
424
|
)}
|
@@ -446,7 +446,7 @@ export const Table: TableComponentProps = ({
|
|
446
446
|
}
|
447
447
|
})}
|
448
448
|
{actionColumn && (
|
449
|
-
<td className="sticky right-0 px-4 py-1.5 bg-secondary-bg text-center">
|
449
|
+
<td className="sticky right-0 w-0 px-4 py-1.5 bg-secondary-bg text-center">
|
450
450
|
{actionColumn(item)}
|
451
451
|
</td>
|
452
452
|
)}
|