Selaa lähdekoodia

assembly view bug fixes

bioinsilico 1 vuosi sitten
vanhempi
commit
88a15ccb0b

+ 5 - 1
CHANGELOG.md

@@ -2,9 +2,13 @@
 
 [Semantic Versioning](https://semver.org/)
 
+## [3.0.9] - 2023-05-19
+### Bug fix
+- Chain checkbox label bug fixed in assembly view
+
 ## [3.0.8] - 2023-05-19
 ### Bug fix
-- Chain check box display bug fixed in assembly view 
+- Chain checkbox display bug fixed in assembly view 
 - PFV onchange selection bug fixed in assembly view
 
 ## [3.0.7] - 2023-05-16

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
   "name": "@rcsb/rcsb-saguaro-3d",
-  "version": "3.0.8",
+  "version": "3.0.9",
   "description": "RCSB Molstar/Saguaro Web App",
   "main": "build/dist/app.js",
   "files": [

+ 1 - 1
src/RcsbFvStructure/StructureViewers/MolstarViewer/TrajectoryPresetProvider/AssemblyRepresentationPresetProvider.ts

@@ -55,7 +55,7 @@ export const AssemblyRepresentationPresetProvider = StructureRepresentationPrese
                     }),
                     uniqid(`${asymId}`),
                     {
-                        label: asymId == authId ? asymId : `${asymId} [${authId}]`
+                        label: asymId == authId ? asymId : `${asymId} [auth ${authId}]`
                     }
                 );
                 componentMap[asymId] = comp;