Fixing
All checks were successful
SteamWarCI Build successful

This commit is contained in:
2025-06-27 00:24:13 +02:00
parent 2a8b98ce5b
commit 5e0a9d89b3

View File

@ -39,8 +39,7 @@ export class OpenEditPage {
contentToSave += this.content; contentToSave += this.content;
const encodedContent = btoa(new TextEncoder().encode(contentToSave).reduce((data, byte) => data + String.fromCharCode(byte), "")); const encodedContent = btoa(new TextEncoder().encode(contentToSave).reduce((data, byte) => data + String.fromCharCode(byte), ""));
console.log(encodedContent); await get(pageRepo).updatePage(this.pageId, this.sha, encodedContent, this.manager.branch);
//await get(pageRepo).updatePage(this.pageId, this.sha, encodedContent, this.manager.branch);
this.dirty = false; this.dirty = false;
this.manager.reloadImages(); this.manager.reloadImages();
} }