Skip to content
This repository was archived by the owner on Jun 8, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/desktop/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "desktop",
"version": "0.4.2",
"version": "0.4.3",
"description": "ClosedLoop Desktop",
"author": "ClosedLoop AI <support@closedloop.ai>",
"private": true,
Expand Down
13 changes: 13 additions & 0 deletions apps/desktop/src/renderer/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -749,6 +749,14 @@
background: #2563eb;
}

.activity-method {
font-family: "Berkeley Mono", "JetBrains Mono", "SF Mono", "Fira Code", monospace;
font-size: 10px;
font-weight: 700;
color: var(--muted);
flex-shrink: 0;
}

.activity-title {
font-weight: 600;
flex: 1;
Expand Down Expand Up @@ -1565,6 +1573,11 @@ <h3 class="settings-group-title">Always-Allow Rules</h3>
dot.className = `activity-dot ${kind === "security" ? "server-error" : tone}`;
top.appendChild(dot);

const method = document.createElement("span");
method.className = "activity-method";
method.textContent = event.method || "GET";
top.appendChild(method);

const title = document.createElement("span");
title.className = "activity-title";
title.textContent = activityLabel(event.path);
Expand Down
Loading