Skip to content

Commit

Permalink
Add tooltip to source list keys
Browse files Browse the repository at this point in the history
  • Loading branch information
jwbonner committed Oct 11, 2024
1 parent c3da2ea commit 2c8239d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/hub/SourceList.ts
Original file line number Diff line number Diff line change
Expand Up @@ -934,6 +934,7 @@ export default class SourceList {
let keySpan = keyContainer.firstElementChild as HTMLElement;
keySpan.innerText = state.logKey;
keySpan.style.textDecoration = this.isFieldAvailable(state) ? "" : "line-through";
keyContainer.title = state.logKey;

// Update type width, cloning to a new node in case the controls aren't visible
let mockTypeName = typeNameElement.cloneNode(true) as HTMLElement;
Expand Down

0 comments on commit 2c8239d

Please sign in to comment.