Skip to content

Commit

Permalink
Fix order for Proxy list (#64)
Browse files Browse the repository at this point in the history
Bump version to v0.3.1
  • Loading branch information
hatchan authored Mar 31, 2022
1 parent 810078e commit fbdf472
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fp"
version = "0.3.0"
version = "0.3.1"
authors = ["Team Fiberplane"]
edition = "2018"
build = "build.rs"
Expand Down
6 changes: 3 additions & 3 deletions src/proxies.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,12 +154,12 @@ async fn handle_remove_command(args: SingleProxyArgs) -> Result<()> {

#[derive(Table)]
pub struct ProxySummaryRow {
#[table(title = "ID")]
pub id: String,

#[table(title = "Name")]
pub name: String,

#[table(title = "ID")]
pub id: String,

#[table(title = "Status")]
pub status: String,
}
Expand Down

0 comments on commit fbdf472

Please sign in to comment.