From f75ee3c8ba6d91e222b23261f9628abe7093c3c0 Mon Sep 17 00:00:00 2001 From: Wing-Kam Wong Date: Sat, 15 Apr 2023 17:16:08 +0800 Subject: [PATCH] chore: fix typos --- .../src/modules/attachments/attachments.service.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/nocodb-nest/src/modules/attachments/attachments.service.ts b/packages/nocodb-nest/src/modules/attachments/attachments.service.ts index d918722066..6277b10309 100644 --- a/packages/nocodb-nest/src/modules/attachments/attachments.service.ts +++ b/packages/nocodb-nest/src/modules/attachments/attachments.service.ts @@ -35,8 +35,8 @@ export class AttachmentsService { // if `url` is null, then it is local attachment if (!url) { - // then store the attachement path only - // url will be constructued in `useAttachmentCell` + // then store the attachment path only + // url will be constructed in `useAttachmentCell` attachmentPath = `download/${filePath.join('/')}/${fileName}`; } @@ -89,8 +89,8 @@ export class AttachmentsService { // if `attachmentUrl` is null, then it is local attachment if (!attachmentUrl) { - // then store the attachement path only - // url will be constructued in `useAttachmentCell` + // then store the attachment path only + // url will be constructed in `useAttachmentCell` attachmentPath = `download/${filePath.join('/')}/${fileName}`; }