@sanctuary-framework/mcp-server 1.1.3 → 1.1.4
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/cli.cjs +2 -2
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +2 -2
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -12730,7 +12730,7 @@ function renderDashboardV11Html(options = {}) {
|
|
|
12730
12730
|
streamUrl,
|
|
12731
12731
|
identityId,
|
|
12732
12732
|
fortressId
|
|
12733
|
-
});
|
|
12733
|
+
}).replace(/</g, "\\u003c");
|
|
12734
12734
|
const clientBlock = embedClient ? `<script type="module">${getClientScript()}</script>` : `<!-- client script omitted by render option -->`;
|
|
12735
12735
|
return `<!doctype html>
|
|
12736
12736
|
<html lang="en">
|
|
@@ -12761,7 +12761,7 @@ function renderDashboardV11Html(options = {}) {
|
|
|
12761
12761
|
<aside class="fortress" id="fortress"><p class="muted">Loading fortress column.</p></aside>
|
|
12762
12762
|
</div>
|
|
12763
12763
|
<div id="toast-host" aria-live="polite"></div>
|
|
12764
|
-
<script id="dashboard-config" type="application/json">${
|
|
12764
|
+
<script id="dashboard-config" type="application/json">${config}</script>
|
|
12765
12765
|
${clientBlock}
|
|
12766
12766
|
</body>
|
|
12767
12767
|
</html>`;
|