Skip to content

Commit a004126

Browse files
author
jfusco
committed
Case sensitivity issue might be causing Travis to fail
1 parent 2f7c081 commit a004126

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@
6262
"testDirectoryName": "__tests__",
6363
"rootDir": "src",
6464
"testPathIgnorePatterns": [
65-
"/node_modules/",
6665
"<rootDir>/node_modules/"
6766
],
6867
"unmockedModulePathPatterns": [

src/js/Tags.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import React, {Component} from 'react';
44
import update from 'react-addons-update';
5-
import Tag from './tag';
5+
import tag from './tag';
66

77
const map = new WeakMap();
88

@@ -95,7 +95,7 @@ export default class Tags extends Component{
9595

9696
render(){
9797
const tagItems = this.state.tags.map((tag, v) => {
98-
return <Tag
98+
return <tag
9999
key={v}
100100
readOnly={this.props.readOnly}
101101
name={tag}

0 commit comments

Comments
 (0)