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