|
8 | 8 | aria-labelledby="alertIconVariousFormts" aria-hidden="false" /> |
9 | 9 | </div> |
10 | 10 | <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> |
40 | 16 | </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> |
45 | 17 | </div> |
46 | 18 | </div> |
47 | 19 | <div class="field has-addons mt-1"> |
48 | 20 | <p class="control"> |
49 | 21 | <span v-if="websiteEnv !== 'prd'" class="select cve-search-selector"> |
50 | 22 | <select v-model="searchType"> |
51 | | - <option>Search CVE List (Beta)</option> |
| 23 | + <option>Search CVE List</option> |
52 | 24 | <option>Find a Test CVE Record/ID (Legacy)</option> |
53 | 25 | </select> |
54 | 26 | </span> |
@@ -98,15 +70,13 @@ let errorMessage = ref(''); |
98 | 70 |
|
99 | 71 | let cveGenericGlobalsStore = useGenericGlobalsStore(); |
100 | 72 | let cveRecordStore = usecveRecordStore(); |
101 | | -let searchType = ref('Search CVE List (Beta)'); |
| 73 | +let searchType = ref('Search CVE List'); |
102 | 74 | let cveId = cveRecordStore.cveId; |
103 | 75 |
|
104 | | -let showSearchHelpText = ref(false); |
105 | | -
|
106 | 76 | // this seems redundant, but it fixes an edge case. |
107 | 77 | // 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. |
108 | 78 | let searchTypeBoolean = computed(() => { |
109 | | - return searchType.value == 'Search CVE List (Beta)' ? true : false; |
| 79 | + return searchType.value == 'Search CVE List' ? true : false; |
110 | 80 | }); |
111 | 81 |
|
112 | 82 | watch(searchType, () => { |
|
0 commit comments