Skip to content

Commit ec104e1

Browse files
committed
Fixed regression where process ports didn't show when process had a defined url.
1 parent 407321f commit ec104e1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

devenv-tui/src/view.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -701,7 +701,7 @@ fn ActivityItem(mut hooks: Hooks) -> impl Into<AnyElement<'static>> {
701701
};
702702

703703
// Format ports: extract just the port numbers for brevity
704-
let ports_suffix = if !process_data.ports.is_empty() && process_data.urls.is_empty() {
704+
let ports_suffix = if !process_data.ports.is_empty() {
705705
let port_list: Vec<String> = process_data
706706
.ports
707707
.iter()

0 commit comments

Comments
 (0)