From 56f78dd90662e117f7b286aa27b34a108bba813f Mon Sep 17 00:00:00 2001 From: Carter Date: Tue, 3 Jun 2025 09:50:36 -0600 Subject: [PATCH] got rid of last column size grabber --- src/common/ResponsiveTable.tsx | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/common/ResponsiveTable.tsx b/src/common/ResponsiveTable.tsx index bb13c51..e6d1f7c 100644 --- a/src/common/ResponsiveTable.tsx +++ b/src/common/ResponsiveTable.tsx @@ -543,12 +543,14 @@ export default function ResponsiveTable(props: Props) { > {column.title} {showOrderIcon(column)} - resizeClick(event, index)} - > - | - + {index < columns.length-1 && + resizeClick(event, index)} + > + | + + } )