Skip to content
This repository has been archived by the owner on Jan 11, 2023. It is now read-only.

Commit

Permalink
Don't show column breakpoints for pretty files
Browse files Browse the repository at this point in the history
  • Loading branch information
darkwing committed Nov 7, 2018
1 parent 49b3a96 commit 7d43293
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Editor/CallSites.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ class CallSites extends Component {
const { editor, callSites, selectedSource } = this.props;

let sites;
if (!callSites) {
if (!callSites || (selectedSource && selectedSource.isPrettyPrinted)) {
return null;
}

Expand Down

0 comments on commit 7d43293

Please sign in to comment.