clementine-agent 1.18.99 → 1.18.100
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/dashboard.js +1 -1
- package/package.json +1 -1
package/dist/cli/dashboard.js
CHANGED
|
@@ -34325,7 +34325,7 @@ function buildAgentToolRow(cat, tool) {
|
|
|
34325
34325
|
var pathHint = (type === 'project' && tool.path) ? ' <span style="color:var(--text-muted);font-size:10px">' + esc(tool.path) + '</span>' : '';
|
|
34326
34326
|
var statusEl;
|
|
34327
34327
|
if (setupTarget) {
|
|
34328
|
-
statusEl = '<a class="tt-status ' + statusClass + '" href="#" onclick="event.preventDefault();event.stopPropagation();navigateTo(
|
|
34328
|
+
statusEl = '<a class="tt-status ' + statusClass + '" href="#" onclick="event.preventDefault();event.stopPropagation();navigateTo(\\x27' + setupTarget + '\\x27);hideAgentModal();" style="text-decoration:none"><span class="tt-dot"></span>' + esc(statusLabel) + ' →</a>';
|
|
34329
34329
|
} else {
|
|
34330
34330
|
statusEl = '<span class="tt-status ' + statusClass + '"><span class="tt-dot"></span>' + esc(statusLabel) + '</span>';
|
|
34331
34331
|
}
|