Skip to content

Commit

Permalink
fix: escape hash in filename in "upload & start"
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Dej <[email protected]>
  • Loading branch information
meteyou committed Nov 24, 2024
1 parent 2038258 commit 234b741
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/TheTopbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ export default class TheTopbar extends Mixins(BaseMixin, ThemeMixin) {
doUploadAndStart(file: File) {
const formData = new FormData()
const filename = file.name
const filename = file.name.replaceAll('#', '')
this.uploadSnackbar.filename = filename
this.uploadSnackbar.status = true
Expand Down

0 comments on commit 234b741

Please sign in to comment.