diff options
author | Vincent Petry <vincent@nextcloud.com> | 2021-07-02 18:16:34 +0200 |
---|---|---|
committer | Vincent Petry <vincent@nextcloud.com> | 2021-07-27 12:19:25 +0200 |
commit | f3f2faa815207b12172cefadcbebe68ab8bffcb3 (patch) | |
tree | b5092333027461811e476c003fec262cea238815 /apps/files_sharing/src | |
parent | 4b5bb4d9cfda9a080861a192524500edfe634ca2 (diff) | |
download | nextcloud-server-f3f2faa815207b12172cefadcbebe68ab8bffcb3.tar.gz nextcloud-server-f3f2faa815207b12172cefadcbebe68ab8bffcb3.zip |
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.js | 2 |
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) { |