Merge pull request #2133 from balena-io/apps-column-match-not-a-function

apps: Fix "column.match is not a function" when --verbose is used
This commit is contained in:
bulldozer-balena[bot] 2020-12-11 01:08:46 +00:00 committed by GitHub
commit b4d37e7a3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -56,7 +56,7 @@ export default class AppsCmd extends Command {
public static primary = true;
public async run() {
const { flags: options } = this.parse<FlagsDef, {}>(AppsCmd);
this.parse<FlagsDef, {}>(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',