From a28f70572b85d8ea22a6ebf8b45258063adc1691 Mon Sep 17 00:00:00 2001 From: andrelandgraf Date: Thu, 13 Jun 2019 00:08:15 +0200 Subject: [PATCH] fixing bugs --- package.json | 2 +- src/{index.css => DataListInput.css} | 0 src/index.js | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename src/{index.css => DataListInput.css} (100%) diff --git a/package.json b/package.json index 2109c0a..de49fb6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-datalist-input", - "version": "1.1.1", + "version": "1.1.2", "description": "This package provides a react component as follows: an input field with a drop down menu to pick a possible option based on the current input.", "main": "dist/main.js", "repository": { diff --git a/src/index.css b/src/DataListInput.css similarity index 100% rename from src/index.css rename to src/DataListInput.css diff --git a/src/index.js b/src/index.js index 840914a..3a6a136 100644 --- a/src/index.js +++ b/src/index.js @@ -1,7 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; -import './index.css'; +import './DataListInput.css'; class DataListInput extends React.Component { constructor( props ) {