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 2f7c081 commit a004126Copy full SHA for a004126
package.json
@@ -62,7 +62,6 @@
62
"testDirectoryName": "__tests__",
63
"rootDir": "src",
64
"testPathIgnorePatterns": [
65
- "/node_modules/",
66
"<rootDir>/node_modules/"
67
],
68
"unmockedModulePathPatterns": [
src/js/Tags.js
@@ -2,7 +2,7 @@
2
3
import React, {Component} from 'react';
4
import update from 'react-addons-update';
5
-import Tag from './tag';
+import tag from './tag';
6
7
const map = new WeakMap();
8
@@ -95,7 +95,7 @@ export default class Tags extends Component{
95
96
render(){
97
const tagItems = this.state.tags.map((tag, v) => {
98
- return <Tag
+ return <tag
99
key={v}
100
readOnly={this.props.readOnly}
101
name={tag}
0 commit comments