Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -567,8 +567,8 @@ export function renderGroupsPanel(deps: GroupsPanelDeps) {
"div",
{ class: "peer-card peer-card--padded", key: group.group_id },
h("div", { class: "peer-title" }, h("strong", null, draftName)),
h("div", { class: "peer-meta" }, `Team ID: ${group.group_id}`),
h("div", { class: "peer-submeta" }, archived ? "Archived" : "Active"),
h("div", { class: "peer-submeta" }, archived ? "Archived Team" : "Active Team"),
h("div", { class: "peer-meta" }, `Advanced: Team ID ${group.group_id}`),
h(
"div",
{ class: "coordinator-admin-summary-grid" },
Expand Down Expand Up @@ -629,7 +629,7 @@ export function renderGroupsPanel(deps: GroupsPanelDeps) {
},
type: "button",
},
selected ? "Managing" : "Manage",
selected ? "Managing" : "Manage Team",
),
h(
"button",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -327,11 +327,15 @@ function renderScopeCard(
"div",
{ class: "peer-card peer-card--padded coordinator-admin-scope-card", key: scopeId || label },
h("div", { class: "peer-title" }, h("strong", null, label)),
h("div", { class: "peer-meta" }, `Space ID: ${scopeId || "unknown"}`),
h(
"div",
{ class: "peer-submeta" },
`Kind: ${scope.kind || "user"} · Status: ${scopeStatusLabel(scope.status)} · Membership epoch: ${scope.membership_epoch ?? 0}`,
`Status: ${scopeStatusLabel(scope.status)} · Kind: ${scope.kind || "user"}`,
),
h(
"div",
{ class: "peer-meta" },
`Advanced: Space ID ${scopeId || "unknown"} · Membership epoch ${scope.membership_epoch ?? 0}`,
),
h(
"div",
Expand Down Expand Up @@ -477,7 +481,7 @@ export function renderGroupScopeManagementPanel(deps: ScopeManagementPanelDeps)
: h(
"div",
{ class: "peer-meta coordinator-admin-empty-state" },
"No Spaces are defined for this Team yet. Create one, then grant specific devices.",
"No Spaces are defined for this Team yet. Create a Space, then grant specific devices. Projects stay local-only until assigned to a Space.",
),
);
}