Sebastian Bittrich 3 years ago
parent
commit
e1c29b4950
3 changed files with 7 additions and 3 deletions
  1. 4 0
      CHANGELOG.md
  2. 1 1
      src/viewer/helpers/plddt-confidence/behavior.ts
  3. 2 2
      src/viewer/index.ts

+ 4 - 0
CHANGELOG.md

@@ -2,6 +2,10 @@
 
 [Semantic Versioning](https://semver.org/)
 
+## [2.0.1]
+### Bug fixes
+- fix typo in pLDDT behavior name
+
 ## [2.0.0]
 ### Breaking changes
 - `loadStructureFromData()` is not async anymore

+ 1 - 1
src/viewer/helpers/plddt-confidence/behavior.ts

@@ -12,7 +12,7 @@ import { StructureElement } from 'molstar/lib/mol-model/structure';
 import { ParamDefinition as PD } from 'molstar/lib/mol-util/param-definition';
 import { PluginBehavior } from 'molstar/lib/mol-plugin/behavior/behavior';
 
-export const PLLDTConfidenceScore = PluginBehavior.create<{ autoAttach: boolean, showTooltip: boolean }>({
+export const PLDDTConfidenceScore = PluginBehavior.create<{ autoAttach: boolean, showTooltip: boolean }>({
     name: 'plddt-confidence-prop',
     category: 'custom-props',
     display: {

+ 2 - 2
src/viewer/index.ts

@@ -37,7 +37,7 @@ import { DefaultPluginUISpec, PluginUISpec } from 'molstar/lib/mol-plugin-ui/spe
 import { PluginUIContext } from 'molstar/lib/mol-plugin-ui/context';
 import { ANVILMembraneOrientation, MembraneOrientationPreset } from 'molstar/lib/extensions/anvil/behavior';
 import { MembraneOrientationRepresentationProvider } from 'molstar/lib/extensions/anvil/representation';
-import { PLLDTConfidenceScore } from './helpers/plddt-confidence/behavior';
+import { PLDDTConfidenceScore } from './helpers/plddt-confidence/behavior';
 import { PluginContext } from 'molstar/lib/mol-plugin/context';
 import { TrajectoryHierarchyPresetProvider } from 'molstar/lib/mol-plugin-state/builder/structure/hierarchy-preset';
 
@@ -54,7 +54,7 @@ const Extensions = {
     'rcsb-assembly-symmetry': PluginSpec.Behavior(RCSBAssemblySymmetry),
     'rcsb-validation-report': PluginSpec.Behavior(RCSBValidationReport),
     'anvil-membrane-orientation': PluginSpec.Behavior(ANVILMembraneOrientation),
-    'plddt-confidence': PluginSpec.Behavior(PLLDTConfidenceScore)
+    'plddt-confidence': PluginSpec.Behavior(PLDDTConfidenceScore)
 };
 
 const DefaultViewerProps = {