mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2026-01-08 20:23:39 +00:00
Remove missed console.log debugging lines
This commit is contained in:
@@ -46,7 +46,6 @@ const BrewItem = createClass({
|
|||||||
},
|
},
|
||||||
|
|
||||||
updateFilter : function(type, term){
|
updateFilter : function(type, term){
|
||||||
// console.log(`BrewItem: TYPE: ${type}; TERM: ${term}`);
|
|
||||||
this.props.updateListFilter(type, term);
|
this.props.updateListFilter(type, term);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
@@ -130,7 +130,6 @@ const ListPage = createClass({
|
|||||||
},
|
},
|
||||||
|
|
||||||
handleFilterTextChange : function(e){
|
handleFilterTextChange : function(e){
|
||||||
// console.log(e);
|
|
||||||
this.setState({
|
this.setState({
|
||||||
filterString : e.target.value,
|
filterString : e.target.value,
|
||||||
});
|
});
|
||||||
@@ -194,7 +193,6 @@ const ListPage = createClass({
|
|||||||
|
|
||||||
renderTagsOptions : function(){
|
renderTagsOptions : function(){
|
||||||
if(this.state.filterTags?.length == 0) return;
|
if(this.state.filterTags?.length == 0) return;
|
||||||
console.log('renderTags');
|
|
||||||
return <div className='tags-container'>
|
return <div className='tags-container'>
|
||||||
{_.map(this.state.filterTags, (tag, idx)=>{
|
{_.map(this.state.filterTags, (tag, idx)=>{
|
||||||
const matches = tag.match(/^(?:([^:]+):)?([^:]+)$/);
|
const matches = tag.match(/^(?:([^:]+):)?([^:]+)$/);
|
||||||
|
|||||||
Reference in New Issue
Block a user