Skip to content

Commit d869370

Browse files
committed
fix(table): update empty table column header
1 parent d8c9545 commit d869370

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/pharos/src/components/table/pharos-table.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ export class PharosTable extends ScopedRegistryMixin(PharosElement) {
136136
if (column.name) {
137137
return html`<th scope="col">${column.name}</th>`;
138138
} else {
139-
return html`<tb></tb>`;
139+
return html`<th></th>`;
140140
}
141141
});
142142
}

0 commit comments

Comments
 (0)