Skip to content

Commit

Permalink
renamed component
Browse files Browse the repository at this point in the history
  • Loading branch information
chgibb committed Sep 18, 2019
1 parent f2f49a6 commit b97b45a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Expand Up @@ -12,19 +12,19 @@ import {ExpandMore} from "../../../../../components/icons/expandMore";
import {ChevronRight} from "../../../../../components/icons/chevronRight";
import {ContigTree} from "../../../../../containers/contigTree";

export interface AlignmentCoverageTracksOverlayProps {
export interface ContigSelectProps {
onClose: () => void;
align: AlignData;
figure: CircularFigure;
}

export interface AlignmentCoverageTrackOverlayState {
export interface ContigSelectState {

}

export class AlignmentCoverageTrackOverlay extends React.Component<AlignmentCoverageTracksOverlayProps, AlignmentCoverageTrackOverlayState>
export class ContigSelectOverlay extends React.Component<ContigSelectProps, ContigSelectState>
{
public constructor(props: AlignmentCoverageTracksOverlayProps)
public constructor(props: ContigSelectProps)
{
super(props);

Expand Down
Expand Up @@ -7,7 +7,7 @@ import {AlignmentsReportTable} from "../../../../../containers/tables/alignments
import {getReferenceFromUuid} from "../../../../../../uniquelyAddressable";

import {Overlay} from "./../overlay";
import {AlignmentCoverageTrackOverlay} from "./alignmentCoverageTracksOverlay";
import {ContigSelectOverlay} from "./contigSelectOverlay";

export interface CoverageTrackOverlayProps
{
Expand Down Expand Up @@ -48,7 +48,7 @@ export class CoverageTrackOverlay extends React.Component<CoverageTrackOverlayPr
>
{
selectedAlign ?
<AlignmentCoverageTrackOverlay
<ContigSelectOverlay
onClose={() =>
{
this.setState({
Expand Down

0 comments on commit b97b45a

Please sign in to comment.