Skip to content

Commit 41b36d7

Browse files
committed
cveRecordSearchModule: allow = in search, temporarily allow () and *
1 parent 53d1095 commit 41b36d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/cveRecordSearchModule.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ function allValidCharacters(searchString) {
312312
// otherwise. The error message is also set to indicate the invalid
313313
// characters found in the string.
314314
315-
const invalidCharacters = '(){}[]"\'`<>+=|\;!~^*'.split('');
315+
const invalidCharacters = '{}[]"\'`<>+|\;!~^'.split('');
316316
317317
const found = invalidCharacters.filter(i => searchString.includes(i));
318318

0 commit comments

Comments
 (0)