We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f4b2f5 commit 1fa862dCopy full SHA for 1fa862d
src/components/cveRecordSearchModule.vue
@@ -311,9 +311,8 @@ function allValidCharacters(searchString) {
311
// True is returned if the string has no invalid characters, and false
312
// otherwise. The error message is also set to indicate the invalid
313
// characters found in the string.
314
- //
315
- // Leave out the asterisk (*) for the moment, just for testing purposes:
316
- const invalidCharacters = '{}[]"\'`<>+=|\;!~^'.split('');
+
+ const invalidCharacters = '(){}[]"\'`<>+=|\;!~^*'.split('');
317
318
const found = invalidCharacters.filter(i => searchString.includes(i));
319
0 commit comments