diff options
author | Michael Weimann <mail@michael-weimann.eu> | 2018-12-29 11:53:31 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2019-01-04 11:28:11 +0100 |
commit | e18796ecd501f68d43bc0896b97bdc078b335c70 (patch) | |
tree | 99286b9b80a8ef500729392bb697bc1e7a5714f1 /apps | |
parent | 2f0cd40c50fac778c45ac2c00f887876273ee836 (diff) | |
download | nextcloud-server-e18796ecd501f68d43bc0896b97bdc078b335c70.tar.gz nextcloud-server-e18796ecd501f68d43bc0896b97bdc078b335c70.zip |
Removes lost single quote
Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/js/templates.js | 2 | ||||
-rw-r--r-- | apps/files_sharing/js/templates/files_drop.handlebars | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_sharing/js/templates.js b/apps/files_sharing/js/templates.js index ce7409b4652..e9047b9a665 100644 --- a/apps/files_sharing/js/templates.js +++ b/apps/files_sharing/js/templates.js @@ -21,7 +21,7 @@ templates['files_drop'] = template({"1":function(container,depth0,helpers,partia + alias4(((helper = (helper = helpers.name || (depth0 != null ? depth0.name : depth0)) != null ? helper : alias2),(typeof helper === alias3 ? helper.call(alias1,{"name":"name","hash":{},"data":data}) : helper))) + "\" data-name=\"" + alias4(((helper = (helper = helpers.name || (depth0 != null ? depth0.name : depth0)) != null ? helper : alias2),(typeof helper === alias3 ? helper.call(alias1,{"name":"name","hash":{},"data":data}) : helper))) - + "\">\n '" + + "\">\n" + ((stack1 = helpers["if"].call(alias1,(depth0 != null ? depth0.isUploading : depth0),{"name":"if","hash":{},"fn":container.program(1, data, 0),"inverse":container.program(3, data, 0),"data":data})) != null ? stack1 : "") + "</li>\n"; },"useData":true}); diff --git a/apps/files_sharing/js/templates/files_drop.handlebars b/apps/files_sharing/js/templates/files_drop.handlebars index 4dea497f8de..b090e829793 100644 --- a/apps/files_sharing/js/templates/files_drop.handlebars +++ b/apps/files_sharing/js/templates/files_drop.handlebars @@ -1,5 +1,5 @@ <li data-toggle="tooltip" title="{{name}}" data-name="{{name}}"> - '{{#if isUploading}} + {{#if isUploading}} <span class="icon-loading-small"></span> {{name}} {{else}} <img src="{{iconSrc}}"/> {{name}} |