Browse Source

chnaged label Unit->Chain in sequence widget

Alexander Rose 5 years ago
parent
commit
a2133657f0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/mol-plugin/ui/sequence.tsx

+ 1 - 1
src/mol-plugin/ui/sequence.tsx

@@ -242,7 +242,7 @@ export class SequenceView extends PluginUIComponent<{ }, SequenceViewState> {
         return {
             structure: PD.Select(structureOptions[0][0], structureOptions, { shortLabel: true }),
             entity: PD.Select(entityOptions[0][0], entityOptions, { shortLabel: true }),
-            unit: PD.Select(unitOptions[0][0], unitOptions, { shortLabel: true, twoColumns: true }),
+            unit: PD.Select(unitOptions[0][0], unitOptions, { shortLabel: true, twoColumns: true, label: 'Chain' }),
             operator: PD.Select(operatorOptions[0][0], operatorOptions, { shortLabel: true, twoColumns: true })
         }
     }