summerize + najva script
This commit is contained in:
@@ -139,7 +139,7 @@ const Table = <T extends RowDataType>({
|
||||
>
|
||||
{selectable && (
|
||||
<div
|
||||
className="flex-shrink-0 relative z-[5]"
|
||||
className="flex-shrink-0 "
|
||||
onClick={(e) => e.stopPropagation()}
|
||||
>
|
||||
<Checkbox
|
||||
@@ -149,7 +149,7 @@ const Table = <T extends RowDataType>({
|
||||
|
||||
{/* {inlineActions && (
|
||||
<div
|
||||
className="flex-shrink-0 flex items-center gap-2 relative z-[5]"
|
||||
className="flex-shrink-0 flex items-center gap-2 "
|
||||
onClick={(e) => e.stopPropagation()}
|
||||
>
|
||||
{inlineActions(item).map((action, actionIndex) => (
|
||||
@@ -190,7 +190,7 @@ const Table = <T extends RowDataType>({
|
||||
|
||||
{rowActions && (
|
||||
<div
|
||||
className="flex-shrink-0 relative z-[5]"
|
||||
className="flex-shrink-0 "
|
||||
onClick={(e) => e.stopPropagation()}
|
||||
>
|
||||
<RowActionsDropdown actions={rowActions(item)} />
|
||||
@@ -236,7 +236,7 @@ const Table = <T extends RowDataType>({
|
||||
>
|
||||
{selectable && (
|
||||
<td
|
||||
className="px-3 md:px-6 py-3 md:py-4 w-8 md:w-10 relative z-[5]"
|
||||
className="px-3 md:px-6 py-3 md:py-4 w-8 md:w-10 "
|
||||
onClick={(e) => e.stopPropagation()}
|
||||
>
|
||||
<div className='flex items-center gap-3'>
|
||||
@@ -276,7 +276,7 @@ const Table = <T extends RowDataType>({
|
||||
))}
|
||||
{rowActions && (
|
||||
<td
|
||||
className="px-3 md:px-6 py-3 md:py-4 w-8 md:w-10 relative z-[5]"
|
||||
className="px-3 md:px-6 py-3 md:py-4 w-8 md:w-10 "
|
||||
onClick={(e) => e.stopPropagation()}
|
||||
>
|
||||
<RowActionsDropdown actions={rowActions(item)} />
|
||||
@@ -295,7 +295,7 @@ const Table = <T extends RowDataType>({
|
||||
<tr>
|
||||
{selectable && (
|
||||
<th
|
||||
className="px-3 md:px-6 py-3 md:py-4 w-8 md:w-10 relative z-[5] first:rounded-tr-2xl md:first:rounded-tr-3xl"
|
||||
className="px-3 md:px-6 py-3 md:py-4 w-8 md:w-10 first:rounded-tr-2xl md:first:rounded-tr-3xl"
|
||||
onClick={(e) => e.stopPropagation()}
|
||||
>
|
||||
<Checkbox
|
||||
|
||||
Reference in New Issue
Block a user