We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca0cfdb commit 6496a27Copy full SHA for 6496a27
src/fhir-table-renderer.ts
@@ -87,7 +87,9 @@ export class FhirTableRenderer<T> extends LitElement {
87
<thead>
88
<tr>
89
<th></th>
90
- ${columnNames.map((columnName) => html` <th>${columnName}</th>`)}
+ ${columnNames.map(
91
+ (columnName) => html` <th title="${this.columnMap[columnName]}">${columnName}</th>`
92
+ )}
93
</tr>
94
</thead>
95
<tbody>
0 commit comments