Browse Source

Prevent test break

pull/3905/head
Artur Arseniev 4 years ago
parent
commit
fcb1c6954f
  1. 2
      src/commands/index.js

2
src/commands/index.js

@ -385,7 +385,7 @@ export default () => {
const editor = em.get('Editor');
if (!this.isActive(id) || options.force || !c.strict) {
result = command.callRun(editor, options);
result = editor && command.callRun(editor, options);
if (id && command.stop && !command.noStop && !options.abort) {
active[id] = result;
}

Loading…
Cancel
Save