Skip to content

Commit 4db6814

Browse files
authored
Update news for v4.19 (#1132)
1 parent fcdaa5e commit 4db6814

File tree

5 files changed

+16
-2
lines changed

5 files changed

+16
-2
lines changed

src/main/webapp/app/config/constants.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -800,6 +800,7 @@ export type DataRelease = {
800800
};
801801

802802
export const DATA_RELEASES: DataRelease[] = [
803+
{ date: '07042024', version: 'v4.19' },
803804
{ date: '07022024', version: 'v4.18' },
804805
{ date: '06042024', version: 'v4.17' },
805806
{ date: '05012024', version: 'v4.16' },

src/main/webapp/app/pages/newsPage/NewsPage.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ export default class NewsPage extends React.Component<{
9191
<CitationText />
9292
</div>
9393
<div className="mt-2">
94+
<NewsList date={'07042024'} />
9495
<NewsList date={'07022024'} />
9596
<NewsList date={'06042024'} />
9697
<NewsList date={'05012024'} />

src/main/webapp/app/pages/newsPage/NewsPageContent.tsx

+12
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,8 @@ export const UPDATED_SENSITIVITY_LEVEL = 'Updated Sensitivity Level';
9090
export const UPDATED_RESISTANCE_LEVEL = 'Updated Resistance Level';
9191
export const PREVIOUS_BIOMARKER_ASSOCIATION = 'Previous Biomarker Association';
9292
export const CURRENT_BIOMARKER_ASSOCIATION = 'Current Biomarker Association';
93+
export const PREVIOUS_LEVEL_ANNOTATION = 'Previous Variant Annotation';
94+
export const CURRENT_LEVEL_ANNOTATION = 'Current Variant Annotation';
9395

9496
export const NEWLY_ADDED_LEVEL_FOUR_COLUMNS = [
9597
{ name: GENE, size: 2 },
@@ -261,6 +263,16 @@ const EVIDENCE_COLUMN_SEPARATOR = '; ';
261263
// https://stackoverflow.com/questions/41947168/is-it-possible-to-use-keyof-operator-on-literals-instead-of-interfaces
262264

263265
export const NEWS_BY_DATE: { [date: string]: NewsData } = {
266+
'07042024': {
267+
news: [
268+
<span>
269+
We updated the level 2 association for actionable POLE and POLD1
270+
mutations in colorectal cancer and small bowel adenocarcinoma for
271+
immunotherapy to only include known oncogenic mutations in the
272+
exonuclease domain.
273+
</span>,
274+
],
275+
},
264276
'07022024': {
265277
priorityNews: [
266278
<span>
-2.59 KB
Loading

src/main/webapp/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@
1515
<meta name="twitter:site" content="@oncokb">
1616
<meta name="twitter:title" content="OncoKB™ - MSK's Precision Oncology Knowledge Base">
1717
<meta name="twitter:description" content="OncoKB™ is a precision oncology knowledge base developed at Memorial Sloan Kettering Cancer Center that contains biological and clinical information about genomic alterations in cancer.">
18-
<meta name="twitter:image" content="https://www.oncokb.org/content/images/oncokb_summary.png?20240702">
18+
<meta name="twitter:image" content="https://www.oncokb.org/content/images/oncokb_summary.png?20240704">
1919
<meta name="twitter:url" content="https://www.oncokb.org/">
2020

2121
<meta property="og:site_name" content="OncoKB™">
2222
<meta property="og:type" content="website">
2323
<meta property="og:url" content="https://www.oncokb.org/">
2424
<meta property="og:title" content="OncoKB™ - MSK's Precision Oncology Knowledge Base">
2525
<meta property="og:description" content="OncoKB™ is a precision oncology knowledge base developed at Memorial Sloan Kettering Cancer Center that contains biological and clinical information about genomic alterations in cancer.">
26-
<meta property="og:image" content="https://www.oncokb.org/content/images/oncokb_summary.png?20240702">
26+
<meta property="og:image" content="https://www.oncokb.org/content/images/oncokb_summary.png?20240704">
2727

2828
<link rel="mask-icon" href="content/images/favicon/safari-pinned-tab.svg" color="#0968c3">
2929
<!-- Preload the customized fonts, so the html knows how to pain the page -->

0 commit comments

Comments
 (0)