From cf39adbfc6229579cd784a05858e94d8aec80756 Mon Sep 17 00:00:00 2001 From: "courtmanr@gmail.com" Date: Tue, 4 Mar 2025 10:14:32 +0000 Subject: [PATCH] feat: prevent text selection in table header cells for better UX --- frontend/src/context/ThemeContext.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/context/ThemeContext.jsx b/frontend/src/context/ThemeContext.jsx index 956067eb7..5c5cf033a 100644 --- a/frontend/src/context/ThemeContext.jsx +++ b/frontend/src/context/ThemeContext.jsx @@ -154,6 +154,7 @@ export const AppThemeProvider = ({ children }) => { head: { fontWeight: 600, color: darkMode ? '#e0e0e0' : '#424242', + userSelect: 'none', }, }, },