Skip to content

Commit

Permalink
Merge pull request #819 from replicatedhq/hide-yamlerrors
Browse files Browse the repository at this point in the history
Hide yamlErrors for now
  • Loading branch information
emosbaugh committed Jul 20, 2020
2 parents 69664c3 + 935f7cf commit afea474
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion kotsadm/web/src/components/apps/AppVersionHistory.jsx
Expand Up @@ -140,7 +140,8 @@ class AppVersionHistory extends Component {
const { app } = this.props;
const downstream = app.downstreams[0];
const diffSummary = this.getVersionDiffSummary(version);
const hasYamlErrors = this.hasYamlErrors(downstream, version);
let hasYamlErrors = this.hasYamlErrors(downstream, version);
hasYamlErrors = false;

return (
<div>
Expand Down

0 comments on commit afea474

Please sign in to comment.