Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(files_sharing): file request pass empty string if password or exp…
…iration is disabled

Signed-off-by: skjnldsv <[email protected]>
  • Loading branch information
skjnldsv committed Apr 14, 2025
commit bc70e0ded059c186d26a5d39a02bacb8744c1621
4 changes: 2 additions & 2 deletions apps/files_sharing/src/components/NewFileRequestDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -296,8 +296,8 @@ export default defineComponent({
path: this.destination,
note: this.note,
password: this.password || undefined,
expireDate: expireDate || undefined,
password: this.password || '',
expireDate: expireDate || '',
// Empty string
shareWith: '',
Expand Down
Loading