Cli improvements (#850)

* Fix infinite user list

* Remove Description from table
This commit is contained in:
Kai Jellinghaus
2022-11-01 22:14:46 +01:00
committed by GitHub
parent e5d8111ae1
commit 7dafa6e955
5 changed files with 6 additions and 17 deletions

View File

@@ -11,7 +11,7 @@ async function list(opts: GlobalOptions) {
const variables = await VariableService.listVariable({ workspace });
new Table()
.header(["Path", "Is Secret", "Account", "Value", "Description"])
.header(["Path", "Is Secret", "Account", "Value"])
.padding(2)
.border(true)
.body(
@@ -20,7 +20,6 @@ async function list(opts: GlobalOptions) {
x.is_secret ? "true" : "false",
x.account ?? "-",
x.value ?? "-",
x.description ?? "-",
])
)
.render();