Skip to content

Commit

Permalink
chore: add overflow:wrap
Browse files Browse the repository at this point in the history
  • Loading branch information
WillieRuemmele committed Oct 23, 2024
1 parent 8347cca commit 87e86b3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/commands/package/installed/list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ export class PackageInstalledListCommand extends SfCommand<PackageInstalledComma
{ key: 'SubscriberPackageVersionName', name: 'Version Name' },
{ key: 'SubscriberPackageVersionNumber', name: 'Version' },
],
overflow: 'wrap',
});

return records;
Expand Down
2 changes: 1 addition & 1 deletion src/commands/package/version/create/list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export class PackageVersionCreateListCommand extends SfCommand<CreateListCommand
...(flags.verbose ? { 'Version Name': r.VersionName, 'Version Number': r.VersionNumber } : {}),
}));

this.table({ data });
this.table({ data, overflow: 'wrap' });
}

return results;
Expand Down
1 change: 1 addition & 0 deletions src/commands/package/version/list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,7 @@ export class PackageVersionListCommand extends SfCommand<PackageVersionListComma
this.styledHeader(`Package Versions [${results.length}]`);
this.table({
data: results,
overflow: 'wrap',
columns: getColumnData(flags.concise, flags.verbose, flags['show-conversions-only']),
});
} else {
Expand Down
1 change: 1 addition & 0 deletions src/commands/package/version/retrieve.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ export class PackageVersionRetrieveCommand extends SfCommand<PackageVersionRetri
{ key: 'type', name: messages.getMessage('headers.type') },
{ key: 'filePath', name: messages.getMessage('headers.filePath') },
],
overflow: 'wrap',
});

return results;
Expand Down

0 comments on commit 87e86b3

Please sign in to comment.