mirror of
https://github.com/nextcloud/server.git
synced 2026-02-20 00:12:30 -05:00
Merge pull request #56278 from nextcloud/fix/sharing-password-checkbow
fix(files_sharing): sidebar link share password checkbox
This commit is contained in:
commit
754ef25af1
5 changed files with 8 additions and 8 deletions
|
|
@ -170,8 +170,8 @@ export default {
|
|||
if (this.passwordProtectedState !== undefined) {
|
||||
return this.passwordProtectedState
|
||||
}
|
||||
return this.share.newPassword !== undefined
|
||||
|| this.share.password !== undefined
|
||||
return typeof this.share.newPassword === 'string'
|
||||
|| typeof this.share.password === 'string'
|
||||
},
|
||||
async set(enabled) {
|
||||
if (enabled) {
|
||||
|
|
|
|||
4
dist/5660-5660.js
vendored
4
dist/5660-5660.js
vendored
File diff suppressed because one or more lines are too long
2
dist/5660-5660.js.map
vendored
2
dist/5660-5660.js.map
vendored
File diff suppressed because one or more lines are too long
4
dist/files_sharing-files_sharing_tab.js
vendored
4
dist/files_sharing-files_sharing_tab.js
vendored
File diff suppressed because one or more lines are too long
2
dist/files_sharing-files_sharing_tab.js.map
vendored
2
dist/files_sharing-files_sharing_tab.js.map
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue