Skip to content

Commit

Permalink
Remove notice from csv to excel combiner
Browse files Browse the repository at this point in the history
  • Loading branch information
erssebaggala committed Oct 7, 2019
1 parent 7ba9881 commit 72e3d97
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/modules/gis/GISMap.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ import { FiHome,
FiRadio,
FiArrowRight,
FiShare2,
FiDatabase } from "react-icons/fi";
FiDatabase,
FiFilter } from "react-icons/fi";
import 'leaflet-contextmenu'
import 'leaflet-contextmenu/dist/leaflet.contextmenu.css'
import 'leaflet.icon.glyph'
Expand Down Expand Up @@ -578,7 +579,7 @@ class GISMap extends React.Component{
onOpen={this.onSideBarOpen.bind(this)}
onClose={this.onSideBarClose.bind(this)}
>
<Tab id="gis_search" header="Filter" icon={<FiSearch />}>
<Tab id="gis_search" header="Filter" icon={<FiFilter />}>
<div className="mt-2">
<FormGroup
label=""
Expand Down
4 changes: 4 additions & 0 deletions src/modules/utilities/CSVToExcelCombiner.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ export default class CSVToExcelCombiner extends React.Component {
this.combinerListener = null;
}

dismissNotice = () => {
this.setState({notice: null});
}

showFiles = () => {
if (!fs.existsSync(this.state.inputFolder)) {
this.setState({errorMessage: `${this.state.inputFolder} does not exist`})
Expand Down

0 comments on commit 72e3d97

Please sign in to comment.