Skip to content

Commit 019ec46

Browse files
committed
cveRecordSearchModule: allow = in search, temporarily allow () and *
1 parent a01cab9 commit 019ec46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/cveRecordSearchModule.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ function allValidCharacters(searchString) {
318318
// otherwise. The error message is also set to indicate the invalid
319319
// characters found in the string.
320320
321-
const invalidCharacters = '(){}[]"\'`<>+=|\;!~^*'.split('');
321+
const invalidCharacters = '{}[]"\'`<>+|\;!~^'.split('');
322322
323323
const found = invalidCharacters.filter(i => searchString.includes(i));
324324

0 commit comments

Comments
 (0)