From c0e49a5b9911a5240d89035033d8c492fb5b1d4a Mon Sep 17 00:00:00 2001 From: Ege Korkan Date: Mon, 23 Feb 2026 10:18:41 +0100 Subject: [PATCH] chore: fix editdor uru migration --- packages/web/src/scripts/util.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/web/src/scripts/util.js b/packages/web/src/scripts/util.js index 1239098ea..dde9d15d2 100644 --- a/packages/web/src/scripts/util.js +++ b/packages/web/src/scripts/util.js @@ -441,7 +441,7 @@ export async function openEditdor(formatType, thingType, editorInstance) { } const data = thingType + formatType + value; const compressed = compress(data); - const URL = `https://eclipse.github.io/editdor/?td=${compressed}`; + const URL = `https://eclipse-editdor.github.io/editdor/?td=${compressed}`; window.open(URL, "_blank"); } @@ -647,4 +647,4 @@ export function checkDocumentType(jsonDocument) { } else { return "td" } -} \ No newline at end of file +}