mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-22 06:29:29 +01:00
core: fix type errors in migrations
This commit is contained in:
committed by
Abdullah Atta
parent
7acb0a8c0f
commit
7437b29518
@@ -624,6 +624,7 @@ function replaceDateEditedWithDateModified(removeDateEditedProperty = false) {
|
|||||||
|
|
||||||
function wrapTablesWithDiv(html: string) {
|
function wrapTablesWithDiv(html: string) {
|
||||||
const document = parseHTML(html);
|
const document = parseHTML(html);
|
||||||
|
if (!document) return html;
|
||||||
const tables = document.getElementsByTagName("table");
|
const tables = document.getElementsByTagName("table");
|
||||||
for (const table of tables) {
|
for (const table of tables) {
|
||||||
table.setAttribute("contenteditable", "true");
|
table.setAttribute("contenteditable", "true");
|
||||||
@@ -640,6 +641,7 @@ function wrapTablesWithDiv(html: string) {
|
|||||||
|
|
||||||
function removeToxClassFromChecklist(html: string): string {
|
function removeToxClassFromChecklist(html: string): string {
|
||||||
const document = parseHTML(html);
|
const document = parseHTML(html);
|
||||||
|
if (!document) return html;
|
||||||
const checklists = document.querySelectorAll(
|
const checklists = document.querySelectorAll(
|
||||||
".tox-checklist,.tox-checklist--checked"
|
".tox-checklist,.tox-checklist--checked"
|
||||||
);
|
);
|
||||||
@@ -686,6 +688,7 @@ export function tinyToTiptap(html: string) {
|
|||||||
);
|
);
|
||||||
|
|
||||||
const document = parseHTML(html);
|
const document = parseHTML(html);
|
||||||
|
if (!document) return html;
|
||||||
|
|
||||||
const tables = document.querySelectorAll("table");
|
const tables = document.querySelectorAll("table");
|
||||||
for (const table of tables) {
|
for (const table of tables) {
|
||||||
|
|||||||
Reference in New Issue
Block a user