Browse Source

fix assert upload issue

pull/3934/head
ymx 5 years ago
parent
commit
83159de8c2
  1. 2
      src/asset_manager/view/FileUploader.js

2
src/asset_manager/view/FileUploader.js

@ -26,7 +26,7 @@ export default Backbone.View.extend(
initialize(opts = {}) {
this.options = opts;
const c = opts.config || {};
this.module = c.module;
this.module = opts.module;
this.config = c;
this.em = this.config.em;
this.pfx = c.stylePrefix || '';

Loading…
Cancel
Save