Skip to content

Commit

Permalink
Fixed missing query header
Browse files Browse the repository at this point in the history
  • Loading branch information
Sleeckx committed May 18, 2016
1 parent da86feb commit d121564
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/WebComponents/Query/query.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
return false;

const config = this.app.configuration.getQueryConfig(query);
return !!config && config.hideHeader;
return !!config && !!config.hideHeader;
}
}
}

0 comments on commit d121564

Please sign in to comment.