Skip to content

Commit f3df288

Browse files
#3355 remove references of 'Beta' search (#3360)
Co-authored-by: jdaigneau5 <[email protected]>
1 parent 383a583 commit f3df288

File tree

2 files changed

+9
-39
lines changed

2 files changed

+9
-39
lines changed

src/components/cveRecordSearchModule.vue

Lines changed: 8 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -8,47 +8,19 @@
88
aria-labelledby="alertIconVariousFormts" aria-hidden="false" />
99
</div>
1010
<div class="is-flex-grow-5">
11-
<p class="mb-2">The <a href="https://test.cve.org">CVE Test website</a> has a new drop-down menu below.</p>
12-
<ol class="cve-help-text pl-4" v-if="showSearchHelpText">
13-
<li class="mb-2">
14-
<p>
15-
<span class="has-text-weight-bold">Search Capability (Beta) Community testers</span> – To beta-test the new search feature, select
16-
“<span class="has-text-weight-bold">Search CVE List (Beta)</span>” in the drop-down menu. The
17-
<span class="has-text-weight-bold">production</span> data is used and newly published data typically becomes searchable within less than
18-
30 minutes.
19-
<router-link to="/ResourcesSupport/FAQs#pc_cve_list_basicssearch_cve" class="cve-dark-blue-text">Access Search Tips</router-link>
20-
for more information on this new capability.
21-
</p>
22-
<p>
23-
<a href="https://forms.office.com/g/qmmTaYnr5y" target="_blank">
24-
Provide feedback on the new search capability
25-
<span class="icon cve-icon-xxs">
26-
<p id="externalSurveyLink" class="is-hidden">
27-
Survey opens in a new tab or window depending on browser settings
28-
</p>
29-
<font-awesome-icon icon="external-link-alt" aria-labelledby="extenalSurveyLink" aria-hidden="false" class="ml-1"/>
30-
</span>.
31-
</a>.
32-
</p>
33-
</li>
34-
<li>
35-
<span class="has-text-weight-bold">CNAs</span> – to view your <span class="has-text-weight-bold">test data</span>
36-
(your draft records) select “<span class="has-text-weight-bold">Find a Test CVE Record/ID (Legacy)</span>” in the drop-down menu and
37-
provide a CVE ID to find a specific CVE Record.
38-
</li>
39-
</ol>
11+
<p class="is-size-7">
12+
<span class="has-text-weight-bold">CNAs</span> – to view your <span class="has-text-weight-bold">test data</span>
13+
(your draft records) select “<span class="has-text-weight-bold">Find a Test CVE Record/ID (Legacy)</span>” in the drop-down menu and
14+
provide a CVE ID to find a specific CVE Record.
15+
</p>
4016
</div>
41-
<button class="cve-button-ghost cve-btn-container mt-1" @click="showSearchHelpText = !showSearchHelpText" style="float: right !important">
42-
<font-awesome-icon size="1x" :icon="showSearchHelpText ? 'minus' : 'plus'" role="alert"
43-
aria-labelledby="alertIconVariousFormts" aria-hidden="false" />
44-
</button>
4517
</div>
4618
</div>
4719
<div class="field has-addons mt-1">
4820
<p class="control">
4921
<span v-if="websiteEnv !== 'prd'" class="select cve-search-selector">
5022
<select v-model="searchType">
51-
<option>Search CVE List (Beta)</option>
23+
<option>Search CVE List</option>
5224
<option>Find a Test CVE Record/ID (Legacy)</option>
5325
</select>
5426
</span>
@@ -98,15 +70,13 @@ let errorMessage = ref('');
9870
9971
let cveGenericGlobalsStore = useGenericGlobalsStore();
10072
let cveRecordStore = usecveRecordStore();
101-
let searchType = ref('Search CVE List (Beta)');
73+
let searchType = ref('Search CVE List');
10274
let cveId = cveRecordStore.cveId;
10375
104-
let showSearchHelpText = ref(false);
105-
10676
// this seems redundant, but it fixes an edge case.
10777
// if a user searches for a particular field, then on the results page flips the toggle, THEN refreshes without searching, this will keep the correct helper text showing.
10878
let searchTypeBoolean = computed(() => {
109-
return searchType.value == 'Search CVE List (Beta)' ? true : false;
79+
return searchType.value == 'Search CVE List' ? true : false;
11080
});
11181
11282
watch(searchType, () => {

src/views/ResourcesSupport/FAQs.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
<div :id="item.sectionId + qAndA.questionId + 'response'" class="message-body"
7070
:class="{'is-hidden': accordion[item.sectionId + qAndA.questionId]}">
7171
<div v-if="qAndA.questionId == 'search_cve'" class="pb-3">
72-
<p class="has-text-weight-bold"><span v-if="websiteEnv !== 'prd'">TEST.CVE.ORG </span>Search CVE List (Beta) Tips</p>
72+
<p class="has-text-weight-bold"><span v-if="websiteEnv !== 'prd'">TEST.CVE.ORG </span>Search CVE List Tips</p>
7373
<ul>
7474
<li>Search the CVE List by keywords using the
7575
<router-link :to="{ hash: '#cve-secondary-navbar' }">search box</router-link> at the top of this page.

0 commit comments

Comments
 (0)