Skip to content

Commit

Permalink
fixed missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
vitalis-wiens committed Feb 11, 2019
1 parent 1e37f52 commit e0f074f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webvowl/js/graph.js
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ module.exports = function (graphContainerSelector) {
d3.select("#reloadCachedOntology").classed("hidden",!showReloadButtonAfterLayoutOptimization);
if (showFilterWarning===true && seenFilterWarning===false){
graph.options().warningModule().showFilterHint();
seenFilterWarning=true
seenFilterWarning=true;
}
}

Expand Down

0 comments on commit e0f074f

Please sign in to comment.