summaryrefslogtreecommitdiffstats
path: root/core/src
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2019-01-29 12:22:34 +0100
committerJulius Härtl <jus@bitgrid.net>2019-03-01 20:56:18 +0100
commit53ac9bdda17e5141fceaec1a895f733c13c73c7a (patch)
tree19c81b212c82930e948dc98ae0cef5be5d427de3 /core/src
parent3777df64ae0a4a3d79e000541c0c512fb3ebf304 (diff)
downloadnextcloud-server-53ac9bdda17e5141fceaec1a895f733c13c73c7a.tar.gz
nextcloud-server-53ac9bdda17e5141fceaec1a895f733c13c73c7a.zip
Implement frontend for search/rename
Signed-off-by: Julius Härtl <jus@bitgrid.net> Move to vuex Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'core/src')
-rw-r--r--core/src/OCP/collaboration.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/OCP/collaboration.js b/core/src/OCP/collaboration.js
index a74834e741e..54b580406ed 100644
--- a/core/src/OCP/collaboration.js
+++ b/core/src/OCP/collaboration.js
@@ -49,7 +49,7 @@ export default {
return Object.keys(types);
},
getIcon(type) {
- return types[type].icon;
+ return types[type].icon || '';
},
getLabel(type) {
return t('files_sharing', 'Link to a {label}', { label: types[type].typeString || type }, 1)