Skip to content

Commit

Permalink
db-tabulator: support header_template even if skip_table is set
Browse files Browse the repository at this point in the history
  • Loading branch information
siddharthvp committed Nov 23, 2023
1 parent 6173e94 commit 8de463b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions db-tabulator/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -480,6 +480,10 @@ export class Query {
}));
tableText = table.text;
}
} else {
if (header_template) {
tableText = '{{' + header_template + '}}\n';
}
}

if (row_template) {
Expand Down

0 comments on commit 8de463b

Please sign in to comment.