Skip to content

Commit c0b8a79

Browse files
Fix for table formatting (#91)
Co-authored-by: Daniel Pigott <danielp@canva.com>
1 parent 3ab9040 commit c0b8a79

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/formatters.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export class TableFormatter {
1313
function format(result, formatOptions) {
1414
let data = [];
1515
_.each(result, function (item) {
16-
data.push(values(_.pick(item, options.values)));
16+
data.push(_.values(_.pick(item, options.values)));
1717
});
1818
if (formatOptions.format === 'csv') {
1919
_.each(data, function (row) {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cloudflare-cli",
3-
"version": "5.0.2",
3+
"version": "5.0.3",
44
"description": "A command line interface for interacting with cloudflare",
55
"homepage": "https://github.com/danielpigott/cloudflare-cli",
66
"bugs": {

0 commit comments

Comments
 (0)