diff --git a/agent/Cargo.toml b/agent/Cargo.toml index 0d623e9..a25a58b 100644 --- a/agent/Cargo.toml +++ b/agent/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cm-dashboard-agent" -version = "0.1.36" +version = "0.1.37" edition = "2021" [dependencies] diff --git a/dashboard/Cargo.toml b/dashboard/Cargo.toml index 5635fdc..f02e645 100644 --- a/dashboard/Cargo.toml +++ b/dashboard/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cm-dashboard" -version = "0.1.36" +version = "0.1.37" edition = "2021" [dependencies] diff --git a/dashboard/src/ui/mod.rs b/dashboard/src/ui/mod.rs index 34ccc59..e24c91d 100644 --- a/dashboard/src/ui/mod.rs +++ b/dashboard/src/ui/mod.rs @@ -555,7 +555,7 @@ impl TuiApp { // Split the title bar into left and right sections let chunks = Layout::default() .direction(Direction::Horizontal) - .constraints([Constraint::Min(0), Constraint::Min(0)]) + .constraints([Constraint::Length(15), Constraint::Min(0)]) .split(area); // Left side: "cm-dashboard" text diff --git a/shared/Cargo.toml b/shared/Cargo.toml index 2e09343..8595567 100644 --- a/shared/Cargo.toml +++ b/shared/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cm-dashboard-shared" -version = "0.1.36" +version = "0.1.37" edition = "2021" [dependencies]