@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/index.js CHANGED
@@ -12727,7 +12727,7 @@ function renderDashboardV11Html(options = {}) {
12727
12727
  streamUrl,
12728
12728
  identityId,
12729
12729
  fortressId
12730
- });
12730
+ }).replace(/</g, "\\u003c");
12731
12731
  const clientBlock = embedClient ? `<script type="module">${getClientScript()}</script>` : `<!-- client script omitted by render option -->`;
12732
12732
  return `<!doctype html>
12733
12733
  <html lang="en">
@@ -12758,7 +12758,7 @@ function renderDashboardV11Html(options = {}) {
12758
12758
  <aside class="fortress" id="fortress"><p class="muted">Loading fortress column.</p></aside>
12759
12759
  </div>
12760
12760
  <div id="toast-host" aria-live="polite"></div>
12761
- <script id="dashboard-config" type="application/json">${escHtml2(config)}</script>
12761
+ <script id="dashboard-config" type="application/json">${config}</script>
12762
12762
  ${clientBlock}
12763
12763
  </body>
12764
12764
  </html>`;