next-helios-fe 1.9.1 → 1.9.2
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
@@ -707,7 +707,7 @@ export const Table: TableComponentProps = ({
|
|
707
707
|
return (
|
708
708
|
<tr key={item?.[options?.customDataIdName ?? "id"]}>
|
709
709
|
{checkbox && (
|
710
|
-
<td className="sticky left-0 w-8 bg-secondary-bg px-4 py-1.5">
|
710
|
+
<td className="sticky left-0 z-10 w-8 bg-secondary-bg px-4 py-1.5">
|
711
711
|
<Form.Checkbox
|
712
712
|
options={{ disableHover: true }}
|
713
713
|
checked={
|
@@ -757,7 +757,7 @@ export const Table: TableComponentProps = ({
|
|
757
757
|
</td>
|
758
758
|
)}
|
759
759
|
{!options?.hideNumberColumn && (
|
760
|
-
<td className="sticky left-0 w-8 bg-secondary-bg px-4 py-1.5 text-center">
|
760
|
+
<td className="sticky left-0 z-10 w-8 bg-secondary-bg px-4 py-1.5 text-center">
|
761
761
|
{(page - 1) * maxRow + index + 1}
|
762
762
|
</td>
|
763
763
|
)}
|