Skip to content

Commit

Permalink
Replace quotes to fix tslint
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkh committed Mar 18, 2020
1 parent a67ca00 commit 910df09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/header.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export function updateHeader(node: HTMLElement, col: Column, minWidth = MIN_LABE
const summary = col.getMetaData().summary;
const sublabel = <HTMLElement>node.getElementsByClassName(cssClass('sublabel'))[0];
if (sublabel) {
sublabel.innerHTML = col.getWidth() < minWidth || !summary ? "&nbsp;" : summary;
sublabel.innerHTML = col.getWidth() < minWidth || !summary ? '&nbsp;' : summary;
}

let title = col.label;
Expand Down

0 comments on commit 910df09

Please sign in to comment.