|
19 | 19 | <p v-if="this.$store.state.showHelpText" style="text-align: center;">Please use the search box above to find a CVE record by ID.</p> |
20 | 20 | <div v-if="!this.$store.state.isSearching && !this.$store.state.showHelpText && !this.$store.state.serverError"> |
21 | 21 | <div v-if="this.$store.state.error" style="text-align: center !important"> |
22 | | - <h2 class="title mb-2">{{this.$store.state.cveId}} is not found.</h2> |
| 22 | + <h2 class="title mb-2">{{this.$store.state.cveId}} not found.</h2> |
23 | 23 | <span class="icon-text"> |
24 | 24 | <a href="https://cve.mitre.org/cve/search_cve_list.html" target="_blank"> |
25 | 25 | Find CVE Record by Keyword |
|
98 | 98 | <li v-if="ProductVersion !== undefined"> |
99 | 99 | <span class="has-text-weight-bold">Product: </span><span v-html="$sanitize(ProductVersion.product_name)"></span> |
100 | 100 | </li> |
101 | | - <li v-if="ProductVersion.vendor_version.version_value && ProductVersion.vendor_version.version_value.length > 0"> |
| 101 | + <li v-if="ProductVersion.vendor_version.version_value && ProductVersion.vendor_version.version_value.length > 0 |
| 102 | + && ProductVersion.vendor_version.version_value[0] !== ''"> |
102 | 103 | <span class="has-text-weight-bold">Versions:</span> |
103 | 104 | <span v-html="$sanitize(ProductVersion.vendor_version.version_value.join(', '))"></span> |
104 | 105 | </li> |
|
115 | 116 | <td> |
116 | 117 | <ul v-for="reference in this.$store.state.recordData.reference_data" :key="reference.index"> |
117 | 118 | <li v-if="reference.url !== undefined" class="cve-task-tile-list-item"> |
118 | | - <a :href="$sanitize(reference.url)" class="cve-word-wrap"> |
| 119 | + <a :href="$sanitize(reference.url)" class="cve-word-wrap" target="_blank"> |
119 | 120 | {{reference.name === undefined ? $sanitize(reference.url) : $sanitize(reference.name)}} |
120 | 121 | </a> |
121 | 122 | </li> |
122 | 123 | </ul> |
123 | 124 | <span> |
124 | 125 | View additional information about |
125 | | - <a :href="`https://nvd.nist.gov/view/vuln/detail?vulnId=${this.$store.state.recordData.ID}`"> |
| 126 | + <a :href="`https://nvd.nist.gov/view/vuln/detail?vulnId=${this.$store.state.recordData.ID}`" target="_blank"> |
126 | 127 | {{this.$store.state.recordData.ID}} |
127 | 128 | <span class="icon cve-icon-xxs"> |
128 | 129 | <p id="nvd" class="is-hidden">external site</p> |
|
0 commit comments