Skip to content

Commit 6496a27

Browse files
author
Daniel Schröder
committed
Tooltip added
1 parent ca0cfdb commit 6496a27

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/fhir-table-renderer.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,9 @@ export class FhirTableRenderer<T> extends LitElement {
8787
<thead>
8888
<tr>
8989
<th></th>
90-
${columnNames.map((columnName) => html` <th>${columnName}</th>`)}
90+
${columnNames.map(
91+
(columnName) => html` <th title="${this.columnMap[columnName]}">${columnName}</th>`
92+
)}
9193
</tr>
9294
</thead>
9395
<tbody>

0 commit comments

Comments
 (0)