Browse Source

drop `RCSB PDB` from validation report

Sebastian Bittrich 2 years ago
parent
commit
f70361d88e
2 changed files with 3 additions and 2 deletions
  1. 2 1
      CHANGELOG.md
  2. 1 1
      src/viewer/ui/validation.tsx

+ 2 - 1
CHANGELOG.md

@@ -2,9 +2,10 @@
 
 [Semantic Versioning](https://semver.org/)
 
-## Unreleased
+## [2.5.3] - 2022-07-28
 ### Bug fixes
 - Avoid deprecated React API
+- Rename 'RCSB PDB Validation Report' to 'Validation Report'
 
 ## [2.5.2] - 2022-07-21
 ### Bug fixes

+ 1 - 1
src/viewer/ui/validation.tsx

@@ -146,7 +146,7 @@ export class ValidationReportControls extends CollapsableControls<{}, Validation
         const out: ActionMenu.Items = [
             {
                 kind: 'item',
-                label: validationReportError ? 'Failed to Obtain Validation Report' : (noValidationReport ? 'No Validation Report Available' : 'RCSB PDB Validation Report'),
+                label: validationReportError ? 'Failed to Obtain Validation Report' : (noValidationReport ? 'No Validation Report Available' : 'Validation Report'),
                 value: this.requestValidationReportPreset,
                 disabled: noValidationReport || validationReportError
             },