Skip to content

Commit 63c7a27

Browse files
fixes #165
1 parent 5d92268 commit 63c7a27

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

src/router/index.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import Glossary from '@/views/About/Glossary.vue';
1010
import RelatedEfforts from '@/views/About/RelatedEfforts.vue';
1111
import Metrics from '@/views/About/Metrics.vue';
1212
import Partner from '@/views/PartnerInformation/Partner.vue';
13-
import ListOfPartners from '@/views/PartnerInformation/ListOfPartners.vue';
13+
import ListofPartners from '@/views/PartnerInformation/ListofPartners.vue';
1414
import PartnerDetails from '@/views/PartnerInformation/PartnerDetails.vue';
1515
import Structure from '@/views/ProgramOrganization/Structure.vue';
1616
import ProgramRelationshipwithPartners from '@/views/ProgramOrganization/ProgramRelationshipwithPartners.vue';
@@ -113,15 +113,15 @@ const routes = [
113113
},
114114
},
115115
{
116-
path: '/PartnerInformation/ListOfPartners',
117-
name: 'ListOfPartners',
118-
component: ListOfPartners,
116+
path: '/PartnerInformation/ListofPartners',
117+
name: 'ListofPartners',
118+
component: ListofPartners,
119119
meta: {
120120
title: 'List Of Partners | CVE',
121121
},
122122
},
123123
{
124-
path: '/PartnerInformation/ListOfPartners/partner/:shortName',
124+
path: '/PartnerInformation/ListofPartners/partner/:shortName',
125125
name: 'PartnerDetails',
126126
component: PartnerDetails,
127127
meta: {

src/views/About/Overview.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<router-link to="/About/Glossary?activeTerm=glossaryRecord">CVE Record</router-link> for each
1818
vulnerability in the catalog. The vulnerabilities are discovered then assigned and published
1919
by organizations from around the world that have partnered with the CVE Program.
20-
<router-link to="/PartnerInformation/ListOfPartners">Partners</router-link> publish CVE Records to communicate
20+
<router-link to="/PartnerInformation/ListofPartners">Partners</router-link> publish CVE Records to communicate
2121
consistent descriptions of vulnerabilities. Information technology and cybersecurity professionals use
2222
CVE Records to ensure they are discussing the same issue, and to coordinate their efforts to prioritize and
2323
address the vulnerabilities.

src/views/PartnerInformation/ListOfPartners.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,10 +142,10 @@
142142
<tbody>
143143
<tr v-for="(CNA, index) in pagination.currentCNAstoDisplay" :key="index">
144144
<td class="is-hidden-desktop" scope="row" data-label="Partner">
145-
<router-link :to="'/PartnerInformation/ListOfPartners/partner/'+ $sanitize(CNA.shortName)"> {{CNA.organizationName}}</router-link>
145+
<router-link :to="'/PartnerInformation/ListofPartners/partner/'+ $sanitize(CNA.shortName)"> {{CNA.organizationName}}</router-link>
146146
</td>
147147
<td class="is-hidden-touch" style="width: 30%;" scope="row" data-label="Partner">
148-
<router-link :to="'/PartnerInformation/ListOfPartners/partner/'+ $sanitize(CNA.shortName)"> {{CNA.organizationName}}</router-link>
148+
<router-link :to="'/PartnerInformation/ListofPartners/partner/'+ $sanitize(CNA.shortName)"> {{CNA.organizationName}}</router-link>
149149
</td>
150150
<td data-label="Scope" v-html="$sanitize(CNA.scope)"></td>
151151
<td data-label="Program Role*">{{CNA.CNA.role.join(', ')}}</td>

src/views/PartnerInformation/PartnerDetails.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<tr>
1818
<th style="width: 20%">Root CNA</th>
1919
<td>
20-
<router-link :to="`/PartnerInformation/ListOfPartners/partner/${$sanitize(partner.CNA.root.shortName)}`">
20+
<router-link :to="`/PartnerInformation/ListofPartners/partner/${$sanitize(partner.CNA.root.shortName)}`">
2121
{{partner.CNA.isRoot ? 'N/A' : partner.CNA.root.organizationName}}
2222
</router-link>
2323
</td>

0 commit comments

Comments
 (0)