Skip to content

Commit

Permalink
fix gh advanced sec issues
Browse files Browse the repository at this point in the history
  • Loading branch information
d-roak committed Aug 22, 2024
1 parent e973819 commit 69a70c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/chat/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ async function main() {
handleObjectOps(chatCRO, obj.operations);
});

(<HTMLButtonElement>document.getElementById("chatId")).innerHTML =
(<HTMLButtonElement>document.getElementById("chatId")).innerText =
topologyObject.id;
render();
});
Expand Down Expand Up @@ -164,7 +164,7 @@ async function main() {
);
chatCRO = Object.assign(new Chat(), object);

(<HTMLButtonElement>document.getElementById("chatId")).innerHTML =
(<HTMLButtonElement>document.getElementById("chatId")).innerText =
topologyObject.id;
render();
} catch (e) {
Expand Down

0 comments on commit 69a70c0

Please sign in to comment.