fix envelope list --max-width arg

The --max-width has been accidentally renamed --table-max-width. This
commit revert the thing.
This commit is contained in:
Clément DOUIN 2024-05-15 14:44:38 +02:00
parent f3151c3f84
commit 7a951b4830
No known key found for this signature in database
GPG key ID: 353E4A18EE0FAB72

View file

@ -49,7 +49,8 @@ pub struct ListEnvelopesCommand {
/// This argument will force the table not to exceed the given
/// width in pixels. Columns may shrink with ellipsis in order to
/// fit the width.
#[arg(long, short = 'w', name = "table_max_width", value_name = "PIXELS")]
#[arg(long = "max-width", short = 'w')]
#[arg(name = "table_max_width", value_name = "PIXELS")]
pub table_max_width: Option<u16>,
/// The list envelopes filter and sort query.