@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/cli.js
CHANGED
|
@@ -13354,7 +13354,7 @@ function renderDashboardV11Html(options = {}) {
|
|
|
13354
13354
|
streamUrl,
|
|
13355
13355
|
identityId,
|
|
13356
13356
|
fortressId
|
|
13357
|
-
});
|
|
13357
|
+
}).replace(/</g, "\\u003c");
|
|
13358
13358
|
const clientBlock = embedClient ? `<script type="module">${getClientScript()}</script>` : `<!-- client script omitted by render option -->`;
|
|
13359
13359
|
return `<!doctype html>
|
|
13360
13360
|
<html lang="en">
|
|
@@ -13385,7 +13385,7 @@ function renderDashboardV11Html(options = {}) {
|
|
|
13385
13385
|
<aside class="fortress" id="fortress"><p class="muted">Loading fortress column.</p></aside>
|
|
13386
13386
|
</div>
|
|
13387
13387
|
<div id="toast-host" aria-live="polite"></div>
|
|
13388
|
-
<script id="dashboard-config" type="application/json">${
|
|
13388
|
+
<script id="dashboard-config" type="application/json">${config}</script>
|
|
13389
13389
|
${clientBlock}
|
|
13390
13390
|
</body>
|
|
13391
13391
|
</html>`;
|