Skip to content

Commit

Permalink
Merge pull request #461 from Kitware/disable-versioning
Browse files Browse the repository at this point in the history
Disable versioning logic to prevent orange warnings in deployments
  • Loading branch information
Roni Choudhury committed Oct 24, 2016
2 parents 0bf7cdf + 2d25a71 commit 86db783
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/resonantlab/views/overlays/DatasetLibrary/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ let DatasetLibrary = DatasetSettings.extend({
if (d.attributes.meta.rlab.versionNumber === appVersion) {
return 'none';
} else {
return 'block';
return 'none';
}
})
.attr('title', d => {
Expand Down
2 changes: 1 addition & 1 deletion app/resonantlab/views/overlays/ProjectLibrary/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ let ProjectLibrary = ProjectSettings.extend({
if (d.attributes.meta.rlab.versionNumber === appVersion) {
return 'none';
} else {
return 'block';
return 'none';
}
})
.attr('title', d => {
Expand Down

0 comments on commit 86db783

Please sign in to comment.