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 44ebbc7 commit f55bb37Copy full SHA for f55bb37
.eslintrc
@@ -81,6 +81,11 @@
81
"globals": {
82
"console": true,
83
"process": true,
84
- "__DEV__": true
+ "__DEV__": true,
85
+ "MouseEvent": true,
86
+ "React$Element": true,
87
+ "HTMLInputElement": true,
88
+ "KeyboardEvent": true,
89
+ "SyntheticInputEvent": true
90
}
91
src/component/js/Tags.js
@@ -39,7 +39,7 @@ const Tags = ({
39
if (tags.length >= maxTags) return;
40
41
42
- if(input){
+ if (input){
43
const value = input.value.trim();
44
45
if (uniqueTags){
0 commit comments