🐛 fix(list): fix label creation logic
- prevent panic when creating labels
This commit is contained in:
committed by
Jeremiah Russell
parent
bdf6f56f50
commit
3f50a74756
@@ -24,7 +24,7 @@ impl ListCli {
|
|||||||
|
|
||||||
if !self.labels.is_empty() {
|
if !self.labels.is_empty() {
|
||||||
// add labels if any specified
|
// add labels if any specified
|
||||||
let label_list = Labels::new(credential_file).await?;
|
let label_list = Labels::new(credential_file, false).await?;
|
||||||
|
|
||||||
log::trace!("labels found and setup {label_list:#?}");
|
log::trace!("labels found and setup {label_list:#?}");
|
||||||
log::debug!("labels from command line: {:?}", self.labels);
|
log::debug!("labels from command line: {:?}", self.labels);
|
||||||
|
|||||||
Reference in New Issue
Block a user