Skip to content

Commit

Permalink
fix: don't truncate tables by default
Browse files Browse the repository at this point in the history
  • Loading branch information
mshanemc committed Jun 8, 2023
1 parent 7e737df commit 2115fe7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sfCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ export abstract class SfCommand<T> extends Command {
* Display a table on the console. Will automatically be suppressed when --json flag is present.
*/
public table<R extends Ux.Table.Data>(data: R[], columns: Ux.Table.Columns<R>, options?: Ux.Table.Options): void {
this.ux.table(data, columns, options);
this.ux.table(data, columns, { 'no-truncate': true, ...options });
}

/**
Expand Down

0 comments on commit 2115fe7

Please sign in to comment.