From 6a1c61606c6115fe30e47590269162bbb62a43a0 Mon Sep 17 00:00:00 2001 From: Carter Date: Tue, 3 Jun 2025 12:27:07 -0600 Subject: [PATCH] stopped resize selected from text highlighting --- src/common/ResponsiveTable.tsx | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/src/common/ResponsiveTable.tsx b/src/common/ResponsiveTable.tsx index e7e46ce..8c26891 100644 --- a/src/common/ResponsiveTable.tsx +++ b/src/common/ResponsiveTable.tsx @@ -474,6 +474,10 @@ export default function ResponsiveTable(props: Props) { } + useEffect(() => { + + }) + return ( @@ -528,12 +532,7 @@ export default function ResponsiveTable(props: Props) { columns.map((column, index) => { if (filterList.includes(column.title) || column.hidden) return null return ( - !column.disableSort && columnClick(column)} - // sx={{ cursor: column.disableSort ? "default" : "pointer" }} - > + (props: Props) { {index < columns.length-1 && resizeClick(event, index)} > |