Merge pull request #23647 from nextcloud/backport/23627/stable19
[stable19] Fix sharing input placeholder for emails
This commit is contained in:
commit
236ed11b6b
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -117,22 +117,16 @@ export default {
|
||||||
},
|
},
|
||||||
inputPlaceholder() {
|
inputPlaceholder() {
|
||||||
const allowRemoteSharing = this.config.isRemoteShareAllowed
|
const allowRemoteSharing = this.config.isRemoteShareAllowed
|
||||||
const allowMailSharing = this.config.isMailShareAllowed
|
|
||||||
|
|
||||||
if (!this.canReshare) {
|
if (!this.canReshare) {
|
||||||
return t('files_sharing', 'Resharing is not allowed')
|
return t('files_sharing', 'Resharing is not allowed')
|
||||||
}
|
}
|
||||||
if (!allowRemoteSharing && allowMailSharing) {
|
// We can always search with email addresses for users too
|
||||||
return t('files_sharing', 'Name or email address …')
|
if (!allowRemoteSharing) {
|
||||||
}
|
return t('files_sharing', 'Name or email …')
|
||||||
if (allowRemoteSharing && !allowMailSharing) {
|
|
||||||
return t('files_sharing', 'Name or federated cloud ID …')
|
|
||||||
}
|
|
||||||
if (allowRemoteSharing && allowMailSharing) {
|
|
||||||
return t('files_sharing', 'Name, federated cloud ID or email address …')
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return t('files_sharing', 'Name …')
|
return t('files_sharing', 'Name, email, or federated cloud ID …')
|
||||||
},
|
},
|
||||||
|
|
||||||
isValidQuery() {
|
isValidQuery() {
|
||||||
|
|
Loading…
Reference in New Issue