remove console log

This commit is contained in:
eduardohumberto 2018-04-03 23:26:27 -03:00
parent 2112d1cb93
commit f274882209
1 changed files with 1 additions and 3 deletions

View File

@ -83,11 +83,9 @@
}); });
}, },
getValuesCategory( taxonomy, query ){ getValuesCategory( taxonomy, query ){
this.$console.log( query );
return axios.get('/taxonomy/' + taxonomy + '/terms?hideempty=0' ).then( res => { return axios.get('/taxonomy/' + taxonomy + '/terms?hideempty=0' ).then( res => {
for (let item of res.data) { for (let item of res.data) {
this.$console.log(item.name, query , 'sdfsdddddf');
this.$console.log(item.name, query , 'sdfsdddddf');
this.$console.log(item.name, query , 'sdfsdddddf');
if( item.name.toLowerCase().indexOf( query.toLowerCase() ) >= 0 ) if( item.name.toLowerCase().indexOf( query.toLowerCase() ) >= 0 )
this.options.push(item); this.options.push(item);
} }