Skip to content

Commit

Permalink
fix: avoid adding extra dot
Browse files Browse the repository at this point in the history
  • Loading branch information
pranavxc committed Mar 20, 2024
1 parent fbe1e9a commit fbd25b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nocodb-sdk/src/lib/helperFunctions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ const getFileName = ({
name,
count,
ext
}) => `${name}${count ? `(${count})` : ''}${ext? `.${ext}` : ''}`
}) => `${name}${count ? `(${count})` : ''}${ext? `${ext}` : ''}`

// add count before extension if duplicate name found
function populateUniqueFileName(
Expand Down

1 comment on commit fbd25b7

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR changes have been deployed. Please run the following command to verify:

docker run -d -p 8888:8080 nocodb/nocodb-timely:0.204.9-pr-7958-20240325-0527

Please sign in to comment.