Skip to content

Commit

Permalink
Hide manual residue selection box in nucl mode
Browse files Browse the repository at this point in the history
Refs #2266
  • Loading branch information
kimrutherford committed Oct 31, 2024
1 parent 72e422a commit 5741bb0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -193,9 +193,9 @@
</div>
<div *ngIf="!selectedResidueRange">&nbsp;</div>

<div *ngIf="!deployConfigService.productionMode()" class="manual-selection">
<div *ngIf="!showNucSequence && !deployConfigService.productionMode()" class="manual-selection">
<a *ngIf="!selectedResidueRange && !manualSelectionVisible" (click)="manualSelectionVisible=true;">Manually select residues</a>
<div *ngIf="manualSelectionVisible && !selectedResidueRange && !showNucSequence">
<div *ngIf="manualSelectionVisible && !selectedResidueRange">
Select range: <input [(ngModel)]="manualSelection" (change)="manualSelectionChanged()"
placeholder="Examples: 10..25 or 15-30 or 40">
<span class="manual-selection-error" *ngIf="manualSelectionErrorMessage">error: {{manualSelectionErrorMessage}}</span>
Expand Down

0 comments on commit 5741bb0

Please sign in to comment.