We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ab3f93 commit b1b8342Copy full SHA for b1b8342
1 file changed
src/components/cveRecordSearchModule.vue
@@ -18,6 +18,9 @@
18
The following characters are <span class="has-text-weight-bold">NOT</span>
19
allowed in search terms:
20
<span class="is-family-monospace is-size-6">{{ invalidSearchCharacters }}</span>
21
+ <br>
22
+ The wildcard characters (*?) are now supported, which allows searching
23
+ for patterns instead of only exact matches.
24
</p>
25
</div>
26
<div v-else class="is-flex-grow-5">
@@ -91,7 +94,7 @@ const route = useRoute();
91
94
const router = useRouter();
92
95
93
96
const cveRecordRouteName = 'CVERecord';
-const invalidSearchCharacters = ref('(){}[]"\'`<>|;!~^*+%');
97
+const invalidSearchCharacters = ref('(){}[]\'`<>|;!~^+%');
98
const legacyOptionLabel = 'Find a Test CVE Record/ID (Legacy)';
99
const searchOptionLabel = 'Search CVE List (Production Data)';
100
0 commit comments