diff options
author | Maxence Lange <maxence@nextcloud.com> | 2017-03-17 18:48:33 -0100 |
---|---|---|
committer | Maxence Lange <maxence@nextcloud.com> | 2017-03-17 18:48:33 -0100 |
commit | 69694012ab0eca1ec1f3dc0d2b10a3b1728b0927 (patch) | |
tree | f79ec80ba1eefb73884c723718d8fa5c76cbf203 /apps/files_sharing/js | |
parent | 3c66ad64e626cb602685a640c235d472f0777a53 (diff) | |
download | nextcloud-server-69694012ab0eca1ec1f3dc0d2b10a3b1728b0927.tar.gz nextcloud-server-69694012ab0eca1ec1f3dc0d2b10a3b1728b0927.zip |
shares-circles
Signed-off-by: Maxence Lange <maxence@nextcloud.com>
Diffstat (limited to 'apps/files_sharing/js')
-rw-r--r-- | apps/files_sharing/js/share.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/files_sharing/js/share.js b/apps/files_sharing/js/share.js index fcae7bc9a58..ed516efc3c9 100644 --- a/apps/files_sharing/js/share.js +++ b/apps/files_sharing/js/share.js @@ -134,6 +134,8 @@ hasShares = true; } else if (shareType === OC.Share.SHARE_TYPE_REMOTE) { hasShares = true; + } else if (shareType === OC.Share.SHARE_TYPE_CIRCLE) { + hasShares = true; } }); OCA.Sharing.Util._updateFileActionIcon($tr, hasShares, hasLink); |