@worktile/theia 2.3.0 → 2.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/worktile-theia.umd.js +1 -1
- package/bundles/worktile-theia.umd.js.map +1 -1
- package/esm2015/plugins/quick-insert/components/quick-insert.component.js +2 -2
- package/fesm2015/worktile-theia.js +1 -1
- package/fesm2015/worktile-theia.js.map +1 -1
- package/package.json +1 -1
- package/styles/editor.scss +3 -4
- package/styles/typo.scss +6 -0
|
@@ -13282,7 +13282,7 @@
|
|
|
13282
13282
|
TheQuickInsertComponent.prototype.checkStatus = function () {
|
|
13283
13283
|
var _a;
|
|
13284
13284
|
var editor = this.editor;
|
|
13285
|
-
if (this.isVisible && isCleanEmptyParagraph(editor) && !this.hasExcludeAttribute()
|
|
13285
|
+
if (this.isVisible && isCleanEmptyParagraph(editor) && !this.hasExcludeAttribute()) {
|
|
13286
13286
|
var block = slate.Node.ancestor(editor, [(_a = editor === null || editor === void 0 ? void 0 : editor.selection) === null || _a === void 0 ? void 0 : _a.anchor.path[0]]);
|
|
13287
13287
|
var rootNode = i1.AngularEditor.toDOMNode(editor, block);
|
|
13288
13288
|
this.updatePosition(rootNode.offsetLeft, rootNode.offsetTop);
|