Skip to content

Commit

Permalink
Merge pull request #4186 from LibreSign/backport/4184/stable29
Browse files Browse the repository at this point in the history
[stable29] fix: remove extension from filename
  • Loading branch information
vitormattos authored Dec 24, 2024
2 parents 4b256ab + cf0bee5 commit 77ba446
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Components/Request/RequestPicker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ export default {
async upload(file) {
const data = await loadFileToBase64(file)
await this.filesStore.upload({
name: file.name,
name: file.name.replace(/\.pdf$/i, ''),
file: data,
})
.then((response) => {
Expand Down

0 comments on commit 77ba446

Please sign in to comment.