Skip to content

Commit

Permalink
Update news for v4.19 (#1132)
Browse files Browse the repository at this point in the history
  • Loading branch information
calvinlu3 authored Jul 4, 2024
1 parent fcdaa5e commit 4db6814
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/main/webapp/app/config/constants.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -800,6 +800,7 @@ export type DataRelease = {
};

export const DATA_RELEASES: DataRelease[] = [
{ date: '07042024', version: 'v4.19' },
{ date: '07022024', version: 'v4.18' },
{ date: '06042024', version: 'v4.17' },
{ date: '05012024', version: 'v4.16' },
Expand Down
1 change: 1 addition & 0 deletions src/main/webapp/app/pages/newsPage/NewsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ export default class NewsPage extends React.Component<{
<CitationText />
</div>
<div className="mt-2">
<NewsList date={'07042024'} />
<NewsList date={'07022024'} />
<NewsList date={'06042024'} />
<NewsList date={'05012024'} />
Expand Down
12 changes: 12 additions & 0 deletions src/main/webapp/app/pages/newsPage/NewsPageContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ export const UPDATED_SENSITIVITY_LEVEL = 'Updated Sensitivity Level';
export const UPDATED_RESISTANCE_LEVEL = 'Updated Resistance Level';
export const PREVIOUS_BIOMARKER_ASSOCIATION = 'Previous Biomarker Association';
export const CURRENT_BIOMARKER_ASSOCIATION = 'Current Biomarker Association';
export const PREVIOUS_LEVEL_ANNOTATION = 'Previous Variant Annotation';
export const CURRENT_LEVEL_ANNOTATION = 'Current Variant Annotation';

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

export const NEWS_BY_DATE: { [date: string]: NewsData } = {
'07042024': {
news: [
<span>
We updated the level 2 association for actionable POLE and POLD1
mutations in colorectal cancer and small bowel adenocarcinoma for
immunotherapy to only include known oncogenic mutations in the
exonuclease domain.
</span>,
],
},
'07022024': {
priorityNews: [
<span>
Expand Down
Binary file modified src/main/webapp/content/images/oncokb_summary.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/main/webapp/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@
<meta name="twitter:site" content="@oncokb">
<meta name="twitter:title" content="OncoKB™ - MSK's Precision Oncology Knowledge Base">
<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.">
<meta name="twitter:image" content="https://www.oncokb.org/content/images/oncokb_summary.png?20240702">
<meta name="twitter:image" content="https://www.oncokb.org/content/images/oncokb_summary.png?20240704">
<meta name="twitter:url" content="https://www.oncokb.org/">

<meta property="og:site_name" content="OncoKB™">
<meta property="og:type" content="website">
<meta property="og:url" content="https://www.oncokb.org/">
<meta property="og:title" content="OncoKB™ - MSK's Precision Oncology Knowledge Base">
<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.">
<meta property="og:image" content="https://www.oncokb.org/content/images/oncokb_summary.png?20240702">
<meta property="og:image" content="https://www.oncokb.org/content/images/oncokb_summary.png?20240704">

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

0 comments on commit 4db6814

Please sign in to comment.