Skip to content

Commit

Permalink
changes the name of icicle button to flamegraph
Browse files Browse the repository at this point in the history
  • Loading branch information
petethepig committed Jan 17, 2021
1 parent 196e2a4 commit 3917187
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/javascript/components/FlameGraphRenderer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ class FlameGraphRenderer extends React.Component {
<div className="btn-group viz-switch">
<button className={clsx('btn', {'active': this.state.view == 'table'})} onClick={() => this.updateView('table')}><FontAwesomeIcon icon={faBars} />&nbsp;&thinsp;Table</button>
<button className={clsx('btn', {'active': this.state.view == 'both'})} onClick={() => this.updateView('both')}><FontAwesomeIcon icon={faColumns} />&nbsp;&thinsp;Both</button>
<button className={clsx('btn', {'active': this.state.view == 'icicle'})} onClick={() => this.updateView('icicle')}><FontAwesomeIcon icon={faIcicles} />&nbsp;&thinsp;Icicle Chart</button>
<button className={clsx('btn', {'active': this.state.view == 'icicle'})} onClick={() => this.updateView('icicle')}><FontAwesomeIcon icon={faIcicles} />&nbsp;&thinsp;Flamegraph</button>
</div>
</div>
<div className="flamegraph-container panes-wrapper">
Expand Down

0 comments on commit 3917187

Please sign in to comment.