diff --git a/projects/pathway-browser/src/app/viewport/compare-form/compare-form.component.html b/projects/pathway-browser/src/app/viewport/compare-form/compare-form.component.html deleted file mode 100644 index 812abe26..00000000 --- a/projects/pathway-browser/src/app/viewport/compare-form/compare-form.component.html +++ /dev/null @@ -1 +0,0 @@ -

compare-form works!

diff --git a/projects/pathway-browser/src/app/viewport/compare-form/compare-form.component.scss b/projects/pathway-browser/src/app/viewport/compare-form/compare-form.component.scss deleted file mode 100644 index e69de29b..00000000 diff --git a/projects/pathway-browser/src/app/viewport/compare-form/compare-form.component.ts b/projects/pathway-browser/src/app/viewport/compare-form/compare-form.component.ts deleted file mode 100644 index 81ea311e..00000000 --- a/projects/pathway-browser/src/app/viewport/compare-form/compare-form.component.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { Component, output } from '@angular/core'; - -@Component({ - selector: 'cr-compare-form', - imports: [], - templateUrl: './compare-form.component.html', - styleUrl: './compare-form.component.scss', -}) -export class CompareFormComponent { - close = output<{ status: 'finished' | 'premature' }>(); -} diff --git a/projects/pathway-browser/src/app/viewport/viewport.component.html b/projects/pathway-browser/src/app/viewport/viewport.component.html index ea5b2423..0a1ea914 100644 --- a/projects/pathway-browser/src/app/viewport/viewport.component.html +++ b/projects/pathway-browser/src/app/viewport/viewport.component.html @@ -248,9 +248,6 @@ -
(null); + // Only the analysis form opens here. There was a 'compare' state too, with a + // panel of its own in the template, and nothing anywhere set it -- the form + // behind it was the CLI's `

compare-form works!

` scaffold, shipped in + // the initial commit and never written. Comparing against a disease variant + // is the Compare button in the toolbar, which navigates rather than opening a + // panel. + dropdown = signal<'analysis' | null>(null); toggleAnalysis() { this.dropdown.set(this.dropdown() ? null : 'analysis');