drab 6.1.1 → 6.1.2
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/dist/editor/index.js +1 -1
- package/package.json +1 -1
package/dist/editor/index.js
CHANGED
@@ -148,7 +148,7 @@ export class Editor extends Base {
|
|
148
148
|
for (const blockString of this.#contentElements
|
149
149
|
.filter((el) => el.type === "block")
|
150
150
|
.map((el) => el.value)) {
|
151
|
-
if (line.startsWith(blockString
|
151
|
+
if (line.startsWith(blockString))
|
152
152
|
return blockString;
|
153
153
|
}
|
154
154
|
return null;
|