From d641c8c80100f97927bc2d22411421785c5d231f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=9Cmit=20Tun=C3=A7?= Date: Fri, 24 Apr 2026 13:20:36 +0300 Subject: [PATCH] feat: add SqlConsole component with query execution and data grid rendering --- frontend/src/components/SqlConsole.tsx | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/SqlConsole.tsx b/frontend/src/components/SqlConsole.tsx index 621f628..3bfe991 100644 --- a/frontend/src/components/SqlConsole.tsx +++ b/frontend/src/components/SqlConsole.tsx @@ -84,7 +84,14 @@ const SqlConsole: React.FC = ({ initialQuery, setNotification } bgcolor: darkMode ? '#111827' : '#ffffff', }}> - SQL CONSOLE + + SQL CONSOLE + {rowCount > 0 && ( + + {rowCount} rows + + )} +