mirror of
https://github.com/nextcloud/server.git
synced 2026-02-17 01:41:05 -05:00
fix(files_sharing): sidebar link share password checkbox
Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
This commit is contained in:
parent
bf9bdde28e
commit
c00df59310
1 changed files with 2 additions and 3 deletions
|
|
@ -173,9 +173,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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue