From fd2a6b124c62fe186364efd8eb28409ce7507902 Mon Sep 17 00:00:00 2001 From: Steve Thomas Date: Wed, 17 Jan 2018 12:24:27 -0500 Subject: fixing styling for filter bar Issue-ID: AAI-668 Change-Id: I61ce8ab7f042a8eff8ccd5dee74c8311ad16b65b Signed-off-by: Steve Thomas Signed-off-by: steventh --- src/generic-components/input/SelectInput.jsx | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'src/generic-components') diff --git a/src/generic-components/input/SelectInput.jsx b/src/generic-components/input/SelectInput.jsx index 13a1895..557f4cb 100644 --- a/src/generic-components/input/SelectInput.jsx +++ b/src/generic-components/input/SelectInput.jsx @@ -36,11 +36,12 @@ */ import React, {Component} from 'react'; import Select from 'react-select'; +import 'react-select/dist/react-select.css'; class SelectInput extends Component { - + inputValue = []; - + render() { let {label, value, ...other} = this.props; return ( @@ -54,20 +55,20 @@ class SelectInput extends Component { ); } - + getValue() { return this.inputValue && this.inputValue.length ? this.inputValue : ''; } - + onSelectChanged(value) { this.props.onMultiSelectChanged(value); } - + componentDidMount() { let {value} = this.props; this.inputValue = value ? value : []; } - + componentDidUpdate() { if (this.inputValue !== this.props.value) { this.inputValue = this.props.value; -- cgit 1.2.3-korg