Skip to content

Commit

Permalink
fix: add missing space before headerClass (#138)
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoVie authored and spike-rabbit committed Feb 3, 2025
1 parent de4664e commit 5d42fa4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ export class DataTableHeaderCellComponent implements OnInit {
});

if (typeof res === 'string') {
cls += res;
cls += ' ' + res;
} else if (typeof res === 'object') {
const keys = Object.keys(res);
for (const k of keys) {
Expand Down

0 comments on commit 5d42fa4

Please sign in to comment.