Browse Source

refactor(nocodb): revise tableUpdate response message

pull/5269/head
Wing-Kam Wong 2 years ago
parent
commit
6b01ce9b4e
  1. 2
      packages/nocodb/src/lib/controllers/table.ctl.ts

2
packages/nocodb/src/lib/controllers/table.ctl.ts

@ -64,7 +64,7 @@ export async function tableUpdate(req: Request<any, any>, res) {
table: req.body,
projectId: (req as any).ncProjectId,
});
res.json({ msg: 'success' });
res.json({ msg: 'The table has been updated successfully' });
}
const router = Router({ mergeParams: true });

Loading…
Cancel
Save