Skip to content

Commit 3f45bbe

Browse files
committed
fix: update board for correct complete option
1 parent f82ea4f commit 3f45bbe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/cli/src/commands/board.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export function boardCommand(): Command {
2323
.option('--assignee <name>', 'Filter by assignee')
2424
.option('--json', 'Output as JSON')
2525
.action(async (options: {
26-
showComplete?: boolean;
26+
complete?: boolean;
2727
simple?: boolean;
2828
completionOnly?: boolean;
2929
tag?: string;
@@ -35,7 +35,7 @@ export function boardCommand(): Command {
3535
}
3636

3737
export async function showBoard(options: {
38-
showComplete?: boolean;
38+
complete?: boolean;
3939
simple?: boolean;
4040
completionOnly?: boolean;
4141
tag?: string;
@@ -198,7 +198,7 @@ export async function showBoard(options: {
198198
console.log(chalk.dim('━'.repeat(70)));
199199
console.log('');
200200

201-
renderColumn(STATUS_CONFIG.complete.label, STATUS_CONFIG.complete.emoji, columns.complete, options.showComplete || false, STATUS_CONFIG.complete.colorFn);
201+
renderColumn(STATUS_CONFIG.complete.label, STATUS_CONFIG.complete.emoji, columns.complete, options.complete || false, STATUS_CONFIG.complete.colorFn);
202202
}
203203

204204
function renderColumn(

0 commit comments

Comments
 (0)