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]>

[skip ci]
  • Loading branch information
skjnldsv committed Apr 22, 2025
commit f47b72c134ae48cbdc7143f4092337d5ee16cee8
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