We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ab9040 commit c0b8a79Copy full SHA for c0b8a79
2 files changed
lib/formatters.js
@@ -13,7 +13,7 @@ export class TableFormatter {
13
function format(result, formatOptions) {
14
let data = [];
15
_.each(result, function (item) {
16
- data.push(values(_.pick(item, options.values)));
+ data.push(_.values(_.pick(item, options.values)));
17
});
18
if (formatOptions.format === 'csv') {
19
_.each(data, function (row) {
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "cloudflare-cli",
3
- "version": "5.0.2",
+ "version": "5.0.3",
4
"description": "A command line interface for interacting with cloudflare",
5
"homepage": "https://github.com/danielpigott/cloudflare-cli",
6
"bugs": {
0 commit comments