Skip to content

Commit

Permalink
fix: import plotly landscape statically (#140)
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe authored Feb 22, 2024
1 parent 00585e0 commit 9612373
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions src/components/GeneClinvarCard/GeneClinvarCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,14 @@
* This component displays a Card with ClinVar variant information aggregated
* to the gene level.
*/
import { defineAsyncComponent } from 'vue'
import type { GenomeBuild } from '../../lib/genomeBuilds'
import { ClinvarPerGeneRecord } from '../../pbs/annonars/clinvar/per_gene'
import { Record as GeneInfoRecord } from '../../pbs/annonars/genes/base'
import { Transcript } from '../../pbs/mehari/txs'
import DocsLink from '../DocsLink/DocsLink.vue'
import ClinvarFreqPlot from './ClinvarFreqPlot.vue'
import ClinvarImpact from './ClinvarImpact.vue'
// The variation landascape is defined as an async component as rendering it
// may take a while.
const VariationLandscapePlotly = defineAsyncComponent(
() => import('./VariationLandscapePlotly.vue')
)
import VariationLandscapePlotly from './VariationLandscapePlotly.vue'
/** This component's props. */
// eslint-disable-next-line @typescript-eslint/no-unused-vars
Expand Down

0 comments on commit 9612373

Please sign in to comment.