From 055ad834e70b811f47a04d2c01b309dd7ef756f1 Mon Sep 17 00:00:00 2001 From: Paulo Castro Date: Thu, 10 Dec 2020 22:13:30 +0000 Subject: [PATCH] apps: Fix "column.match is not a function" when --verbose is used Change-type: patch --- lib/commands/apps.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/commands/apps.ts b/lib/commands/apps.ts index e12a53fb..c67e60a8 100644 --- a/lib/commands/apps.ts +++ b/lib/commands/apps.ts @@ -56,7 +56,7 @@ export default class AppsCmd extends Command { public static primary = true; public async run() { - const { flags: options } = this.parse(AppsCmd); + this.parse(AppsCmd); const balena = getBalenaSdk(); @@ -85,7 +85,7 @@ export default class AppsCmd extends Command { getVisuals().table.horizontal(applications, [ 'id', 'app_name', - options.verbose || 'slug', + 'slug', 'device_type', 'online_devices', 'device_count',