Skip to content

Commit 11e76d1

Browse files
committed
deploy 2.0.0-dev-14
1 parent a3bcd71 commit 11e76d1

3 files changed

Lines changed: 20 additions & 20 deletions

File tree

Cargo.lock

Lines changed: 18 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ members = [
88
]
99

1010
[workspace.package]
11-
version = "2.0.0-dev-13"
11+
version = "2.0.0-dev-14"
1212
edition = "2024"
1313
authors = ["mbecker20 <becker.maxh@gmail.com>"]
1414
license = "GPL-3.0-or-later"

bin/cli/src/command/list.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -794,7 +794,7 @@ impl PrintTable for ResourceListItem<ServerListItemInfo> {
794794
Cell::new(self.info.state.to_string())
795795
.fg(color)
796796
.add_attribute(Attribute::Bold),
797-
Cell::new(self.info.address),
797+
Cell::new(self.info.address.as_deref().unwrap_or("inbound")),
798798
Cell::new(self.tags.join(", ")),
799799
];
800800
if links {

0 commit comments

Comments
 (0)