From 4fae00aa3f7552d8e6e5e233449b3e1bbe38ffe5 Mon Sep 17 00:00:00 2001 From: Pranav C Date: Thu, 13 Oct 2022 12:04:48 +0530 Subject: [PATCH] fix(api): swagger count type definition syntax correction Signed-off-by: Pranav C --- .../nocodb/src/lib/meta/api/swagger/helpers/templates/paths.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nocodb/src/lib/meta/api/swagger/helpers/templates/paths.ts b/packages/nocodb/src/lib/meta/api/swagger/helpers/templates/paths.ts index 3760467efb..2b0c4d49ce 100644 --- a/packages/nocodb/src/lib/meta/api/swagger/helpers/templates/paths.ts +++ b/packages/nocodb/src/lib/meta/api/swagger/helpers/templates/paths.ts @@ -561,7 +561,7 @@ export const getViewPaths = async (ctx: { schema: { type: 'object', properties: { - count: 'number', + count: { type: 'number' }, }, }, },