Skip to content

Commit

Permalink
Demo update
Browse files Browse the repository at this point in the history
  • Loading branch information
Çağatay Çivici authored and Çağatay Çivici committed Feb 12, 2018
1 parent c0d0f8c commit 967e0d0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/utils/DomHandler.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export default class DomHandler {
};
}

static generateZindex() {
static generateZIndex() {
this.zindex = this.zindex||999;
return ++this.zindex;
}
Expand Down
10 changes: 8 additions & 2 deletions src/showcase/autocomplete/AutoCompleteDemo.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ export class AutoCompleteDemo extends Component {
constructor() {
super();
this.state = {
countriesData: []
countriesData: [],
filteredCountriesSingle: null,
filteredBrands: null,
filteredCountriesMultiple: null
};

this.filterCountrySingle = this.filterCountrySingle.bind(this);
Expand Down Expand Up @@ -529,7 +532,10 @@ export class AutoCompleteDemo extends Component {
constructor() {
super();
this.state = {
countriesData: []
countriesData: [],
filteredCountriesSingle: null,
filteredBrands: null,
filteredCountriesMultiple: null
};
this.filterCountrySingle = this.filterCountrySingle.bind(this);
Expand Down

0 comments on commit 967e0d0

Please sign in to comment.