Browse Source

Avoid fetchFile in temporary image components

pull/2062/head
Artur Arseniev 7 years ago
parent
commit
33130aad53
  1. 1
      src/dom_components/view/ComponentImageView.js

1
src/dom_components/view/ComponentImageView.js

@ -27,6 +27,7 @@ module.exports = ComponentView.extend({
* Fetch file if exists
*/
fetchFile() {
if (this.modelOpt.temporary) return;
const model = this.model;
const file = model.get('file');

Loading…
Cancel
Save