display details on sharing panel

Signed-off-by: Maxence Lange <maxence@nextcloud.com>
pull/5280/head
Maxence Lange 9 years ago committed by Daniel Calviño Sánchez
parent 0009adae80
commit 2e3517eb00
  1. 13
      core/js/sharedialogresharerinfoview.js

@ -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…
Cancel
Save