Skip to content

Commit f7e848a

Browse files
committed
fix covid link
1 parent c71bb1e commit f7e848a

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

app/frontend/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vdjdb-frontend",
3-
"version": "2.5.1",
3+
"version": "2.5.2",
44
"description": "Frontend application for VDJdb-server",
55
"license": "Apache 2.0",
66
"private": true,

app/frontend/src/app/application.routing.ts

+2
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,14 @@ import { SearchPageComponent } from 'pages/search/search.component';
2121
import { CommonDiseasesActionComponent } from "pages/search/actions/CommonDiseasesActionComponent";
2222
import { FluActionComponent } from "pages/search/actions/FluActionComponent";
2323
import { SelfAntigenActionComponent } from "pages/search/actions/SelfAntigenActionComponent";
24+
import { Covid19ActionComponent } from 'pages/search/actions/CovidActionComponent';
2425

2526
const routes: Routes = [
2627
{ path: '', component: HomePageComponent },
2728
{ path: 'overview', component: OverviewPageComponent },
2829
{ path: 'search', component: SearchPageComponent },
2930
{ path: 'common-diseases', component: CommonDiseasesActionComponent },
31+
{ path: 'covid19', component: Covid19ActionComponent },
3032
{ path: 'flu', component: FluActionComponent },
3133
{ path: 'self-antigen', component: SelfAntigenActionComponent },
3234
{ path: 'annotations', loadChildren: 'pages/annotations/annotations.module#AnnotationsPageModule' },

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import play.sbt.PlayImport.PlayKeys.playRunHooks
33

44
name := """VDJdb-web"""
55

6-
version := "2.5.1"
6+
version := "2.5.2"
77
scalaVersion := "2.12.8"
88

99
val now = System.currentTimeMillis()

0 commit comments

Comments
 (0)