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:
authorVincent Petry <vincent@nextcloud.com>2021-07-02 19:16:34 +0300
committerVincent Petry <vincent@nextcloud.com>2021-07-27 13:19:25 +0300
commitf3f2faa815207b12172cefadcbebe68ab8bffcb3 (patch)
treeb5092333027461811e476c003fec262cea238815 /apps/files_sharing/src
parent4b5bb4d9cfda9a080861a192524500edfe634ca2 (diff)
Pending remote group share fixes
Only remove reject share for remote group shares Also fix share indicator to appear for remote group shares as well. Fix pending remote share icon to be the one of a share. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Diffstat (limited to 'apps/files_sharing/src')
-rw-r--r--apps/files_sharing/src/share.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/files_sharing/src/share.js b/apps/files_sharing/src/share.js
index 385d42eaaea..bb160f8715d 100644
--- a/apps/files_sharing/src/share.js
+++ b/apps/files_sharing/src/share.js
@@ -181,6 +181,8 @@ import escapeHTML from 'escape-html'
hasShares = true
} else if (shareType === OC.Share.SHARE_TYPE_REMOTE) {
hasShares = true
+ } else if (shareType === OC.Share.SHARE_TYPE_REMOTE_GROUP) {
+ hasShares = true
} else if (shareType === OC.Share.SHARE_TYPE_CIRCLE) {
hasShares = true
} else if (shareType === OC.Share.SHARE_TYPE_ROOM) {