From 114af828388ea7ab7dbe046b9a4054c2ca47a57a Mon Sep 17 00:00:00 2001 From: DarkPhoenix2704 Date: Sat, 1 Jun 2024 11:29:24 +0000 Subject: [PATCH] fix: calendar shared viewm download csv, excel failing --- .../nocodb/src/controllers/public-datas-export.controller.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/nocodb/src/controllers/public-datas-export.controller.ts b/packages/nocodb/src/controllers/public-datas-export.controller.ts index 1359ef2ed6..97d5674976 100644 --- a/packages/nocodb/src/controllers/public-datas-export.controller.ts +++ b/packages/nocodb/src/controllers/public-datas-export.controller.ts @@ -40,6 +40,7 @@ export class PublicDatasExportController { view.type !== ViewTypes.GRID && view.type !== ViewTypes.KANBAN && view.type !== ViewTypes.GALLERY && + view.type !== ViewTypes.CALENDAR && view.type !== ViewTypes.MAP ) NcError.notFound('Not found'); @@ -93,6 +94,7 @@ export class PublicDatasExportController { view.type !== ViewTypes.GRID && view.type !== ViewTypes.KANBAN && view.type !== ViewTypes.GALLERY && + view.type !== ViewTypes.CALENDAR && view.type !== ViewTypes.MAP ) NcError.notFound('Not found');