fixed the issue with open file

pull/5370/head
Liana Husikyan 5 years ago committed by LianaHus
parent 2dc453e99f
commit d283420cac
  1. 4
      src/app/files/file-explorer.js

@ -621,7 +621,7 @@ fileExplorer.prototype.renderMenuItems = function () {
items = this.menuItems.map(({action, title, icon}) => { items = this.menuItems.map(({action, title, icon}) => {
if (action === 'uploadFile') { if (action === 'uploadFile') {
return yo` return yo`
<span <label
id=${action} id=${action}
data-id="fileExplorerUploadFile${action}" data-id="fileExplorerUploadFile${action}"
class="${icon} ${css.newFile}" class="${icon} ${css.newFile}"
@ -631,7 +631,7 @@ fileExplorer.prototype.renderMenuItems = function () {
event.stopPropagation() event.stopPropagation()
this.uploadFile(event) this.uploadFile(event)
}} multiple /> }} multiple />
</span> </label>
` `
} else { } else {
return yo` return yo`

Loading…
Cancel
Save