mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-05-15 18:20:35 +00:00
Strip explanatory subtitles from primary page headers
Dashboard, Infrastructure, and Storage carried descriptive blurbs under
their titles ("Monitor fleet health...", "Inspect discovered systems...",
"Track capacity..."). They read like onboarding copy, not header text on
a working monitoring tool. Removed.
PageHeader.description is already optional; the three surfaces now render
with just the title.
Refs #1429 RC2 feedback tone
This commit is contained in:
parent
865fa45ff2
commit
fc019780ce
3 changed files with 3 additions and 12 deletions
|
|
@ -74,10 +74,7 @@ const Storage: Component = () => {
|
|||
class="space-y-4"
|
||||
data-testid="storage-page"
|
||||
>
|
||||
<PageHeader
|
||||
title="Storage"
|
||||
description="Track capacity, cluster health, and storage alerts across local and distributed systems."
|
||||
/>
|
||||
<PageHeader title="Storage" />
|
||||
|
||||
<StickySummarySection desktopOnly={false}>
|
||||
<StoragePageSummary
|
||||
|
|
|
|||
|
|
@ -87,10 +87,7 @@ export function InfrastructurePageSurface() {
|
|||
data-testid="infrastructure-page"
|
||||
class="space-y-4"
|
||||
>
|
||||
<PageHeader
|
||||
title="Infrastructure"
|
||||
description="Inspect discovered systems, cluster health, and resource status across the monitored estate."
|
||||
/>
|
||||
<PageHeader title="Infrastructure" />
|
||||
|
||||
<Show
|
||||
when={!loading() || initialLoadComplete()}
|
||||
|
|
|
|||
|
|
@ -169,10 +169,7 @@ export default function Dashboard() {
|
|||
|
||||
return (
|
||||
<main data-testid="dashboard-page" class="space-y-6">
|
||||
<PageHeader
|
||||
title="Dashboard"
|
||||
description="Monitor fleet health, recent alerts, storage pressure, and recovery readiness from one surface."
|
||||
/>
|
||||
<PageHeader title="Dashboard" />
|
||||
|
||||
{/* Connection warning banner — shown above all content, NOT a full-page takeover */}
|
||||
<Show when={hasConnectionError() && initialLoadComplete()}>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue