From a022718684629e4492680db44555a4348cee641e Mon Sep 17 00:00:00 2001 From: mbilker Date: Tue, 8 Dec 2015 19:42:36 -0500 Subject: [PATCH] fix(require): require classNames throws error under Linux The issue stems that Mac OS X uses a case-insensitive filesystem by default, while most Linux filesystems are case-sensitive. The classNames package will require successfully on Mac OS X during Travis tests, but since the spec test suite isn't normally run under Linux this bug is more unlikely to appear. --- src/components/editable-list.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/editable-list.jsx b/src/components/editable-list.jsx index 7034126e8..128ac8b04 100644 --- a/src/components/editable-list.jsx +++ b/src/components/editable-list.jsx @@ -1,5 +1,5 @@ import _ from 'underscore'; -import classNames from 'classNames'; +import classNames from 'classnames'; import React, {Component, PropTypes} from 'react'; class EditableList extends Component {