From ccc3c7eef936822aca3227d031583f0a1d22e3cc Mon Sep 17 00:00:00 2001 From: mertmit Date: Sat, 6 May 2023 02:46:19 +0300 Subject: [PATCH] fix: table icon update issue Signed-off-by: mertmit --- packages/nocodb/src/controllers/tables.controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nocodb/src/controllers/tables.controller.ts b/packages/nocodb/src/controllers/tables.controller.ts index 9889af8b49..2a214956a1 100644 --- a/packages/nocodb/src/controllers/tables.controller.ts +++ b/packages/nocodb/src/controllers/tables.controller.ts @@ -99,7 +99,7 @@ export class TablesController { await this.tablesService.tableUpdate({ tableId: tableId, table: body, - projectId: req.user, + projectId: req.ncProjectId, }); return { msg: 'The table has been updated successfully' }; }