Skip to content

Commit e5dd64a

Browse files
committed
Merge remote-tracking branch 'origin/main' into int
2 parents ac3a58c + fd1cb4b commit e5dd64a

File tree

3 files changed

+37
-4
lines changed

3 files changed

+37
-4
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
on:
2+
issues:
3+
types: [opened]
4+
jobs:
5+
createCard:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Add New Issues to Backlog Board
9+
uses: peter-evans/create-or-update-project-card@866533e2ae61f13c35fd1d374049713fab43c729 # current tag: v2
10+
with:
11+
project-name: Backlog Board
12+
column-name: New Issues (Need to be Triaged)

src/assets/data/news.json

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1534,9 +1534,17 @@
15341534
"contentnewsType": "table",
15351535
"title": "",
15361536
"year": "2024",
1537-
"quarter": ["Q1","Q2","Q3"],
1537+
"quarter": [
1538+
"Q1",
1539+
"Q2",
1540+
"Q3"
1541+
],
15381542
"dataRowTitle": "CVE Records Published by All CNAs",
1539-
"dataRowCounts": ["8,697","11,716","8,591"]
1543+
"dataRowCounts": [
1544+
"8,697",
1545+
"11,716",
1546+
"8,591"
1547+
]
15401548
},
15411549
{
15421550
"contentnewsType": "paragraph",
@@ -1550,9 +1558,17 @@
15501558
"contentnewsType": "table",
15511559
"title": "",
15521560
"year": "2024",
1553-
"quarter": ["Q1","Q2","Q3"],
1561+
"quarter": [
1562+
"Q1",
1563+
"Q2",
1564+
"Q3"
1565+
],
15541566
"dataRowTitle": "CVE IDs Reserved by All CNAs",
1555-
"dataRowCounts": ["13,499","12,529","11,250"]
1567+
"dataRowCounts": [
1568+
"13,499",
1569+
"12,529",
1570+
"11,250"
1571+
]
15561572
},
15571573
{
15581574
"contentnewsType": "paragraph",

src/router/index.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -440,6 +440,11 @@ router.beforeEach((to, from, next) => {
440440
// Remove any stale meta tags from the document using the key attribute we set below.
441441
Array.from(document.querySelectorAll('[data-vue-router-controlled]'), (el) => el.parentNode.removeChild(el));
442442

443+
//Changes title to reflect CVE-ID
444+
if (to.name === "CVERecord") {
445+
document.title = to.query.id + " | CVE"
446+
}
447+
443448
// Skip rendering meta tags if there are none.
444449
if (!nearestWithMeta) return next();
445450

0 commit comments

Comments
 (0)