Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_sharing/src/utils/SharedWithMe.js')
-rw-r--r--apps/files_sharing/src/utils/SharedWithMe.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/files_sharing/src/utils/SharedWithMe.js b/apps/files_sharing/src/utils/SharedWithMe.js
index 43abddc36b4..e1bc12ffed1 100644
--- a/apps/files_sharing/src/utils/SharedWithMe.js
+++ b/apps/files_sharing/src/utils/SharedWithMe.js
@@ -33,7 +33,7 @@ const shareWithTitle = function(share) {
'Shared with you and the group {group} by {owner}',
{
group: share.shareWithDisplayName,
- owner: share.ownerDisplayName
+ owner: share.ownerDisplayName,
},
undefined,
{ escape: false }
@@ -44,7 +44,7 @@ const shareWithTitle = function(share) {
'Shared with you and {circle} by {owner}',
{
circle: share.shareWithDisplayName,
- owner: share.ownerDisplayName
+ owner: share.ownerDisplayName,
},
undefined,
{ escape: false }
@@ -56,7 +56,7 @@ const shareWithTitle = function(share) {
'Shared with you and the conversation {conversation} by {owner}',
{
conversation: share.shareWithDisplayName,
- owner: share.ownerDisplayName
+ owner: share.ownerDisplayName,
},
undefined,
{ escape: false }
@@ -66,7 +66,7 @@ const shareWithTitle = function(share) {
'files_sharing',
'Shared with you in a conversation by {owner}',
{
- owner: share.ownerDisplayName
+ owner: share.ownerDisplayName,
},
undefined,
{ escape: false }