mirror of
https://github.com/nextcloud/server.git
synced 2026-03-24 11:24:37 -04:00
display details on sharing panel
Signed-off-by: Maxence Lange <maxence@nextcloud.com>
This commit is contained in:
parent
0009adae80
commit
2e3517eb00
1 changed files with 12 additions and 1 deletions
|
|
@ -84,7 +84,18 @@
|
|||
undefined,
|
||||
{escape: false}
|
||||
);
|
||||
} else {
|
||||
} else if (this.model.getReshareType() === OC.Share.SHARE_TYPE_CIRCLE) {
|
||||
sharedByText = t(
|
||||
'core',
|
||||
'Shared with you and {circle} by {owner}',
|
||||
{
|
||||
circle: this.model.getReshareWithDisplayName(),
|
||||
owner: ownerDisplayName
|
||||
},
|
||||
undefined,
|
||||
{escape: false}
|
||||
);
|
||||
} else {
|
||||
sharedByText = t(
|
||||
'core',
|
||||
'Shared with you by {owner}',
|
||||
|
|
|
|||
Loading…
Reference in a new issue