From 9d380dd828e147d51e68bfcad7356bed8bc54c0a Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Tue, 6 Jan 2026 00:10:11 +0200 Subject: [PATCH] fix(sql_console): cannot copy table data (#8268) --- apps/client/src/widgets/sql_result.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/widgets/sql_result.tsx b/apps/client/src/widgets/sql_result.tsx index e4fde650b..7aaa5739d 100644 --- a/apps/client/src/widgets/sql_result.tsx +++ b/apps/client/src/widgets/sql_result.tsx @@ -23,7 +23,7 @@ export default function SqlResults() { {t("sql_result.no_rows")} ) : ( -
+
{results?.map(rows => { // inserts, updates if (typeof rows === "object" && !Array.isArray(rows)) {