Skip to content

Commit

Permalink
remove title (#2459)
Browse files Browse the repository at this point in the history
  • Loading branch information
patricklx authored Aug 31, 2023
1 parent 4a5ec59 commit 60de6c2
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions ember_debug/libs/view-inspection.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,6 @@ function makeStylesheet(id) {
border: none;
border-spacing: 0px;
border-collapse: collapse;
white-space: nowrap;
font-family: sans-serif;
font-size: 12px;
font-weight: normal;
Expand Down Expand Up @@ -373,8 +372,9 @@ export default class ViewInspection {
let rect = this.renderTree.getBoundingClientRect(id);

if (node && rect) {
this._showHighlight(node, rect);
this._showTooltip(node, rect);
rect = this.renderTree.getBoundingClientRect(id);
this._showHighlight(node, rect);

this.isShowing = true;
this.isPinned = pin;
Expand Down Expand Up @@ -522,7 +522,6 @@ export default class ViewInspection {
this._renderTokens(td, value);
} else {
td.innerText = value;
td.title = value;
}

tr.appendChild(th);
Expand Down

0 comments on commit 60de6c2

Please sign in to comment.