mirror of
https://github.com/nextcloud/server.git
synced 2026-04-22 14:50:17 -04:00
Fix sharing input placeholder for emails
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
This commit is contained in:
parent
38bb40cffa
commit
f0c47bfb6d
3 changed files with 6 additions and 12 deletions
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() {
|
||||
const allowRemoteSharing = this.config.isRemoteShareAllowed
|
||||
const allowMailSharing = this.config.isMailShareAllowed
|
||||
|
||||
if (!this.canReshare) {
|
||||
return t('files_sharing', 'Resharing is not allowed')
|
||||
}
|
||||
if (!allowRemoteSharing && allowMailSharing) {
|
||||
return t('files_sharing', 'Name or email address …')
|
||||
}
|
||||
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 …')
|
||||
// We can always search with email addresses for users too
|
||||
if (!allowRemoteSharing) {
|
||||
return t('files_sharing', 'Name or email …')
|
||||
}
|
||||
|
||||
return t('files_sharing', 'Name …')
|
||||
return t('files_sharing', 'Name, email, or federated cloud ID …')
|
||||
},
|
||||
|
||||
isValidQuery() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue