remove console log
This commit is contained in:
parent
2112d1cb93
commit
f274882209
|
@ -83,11 +83,9 @@
|
|||
});
|
||||
},
|
||||
getValuesCategory( taxonomy, query ){
|
||||
this.$console.log( query );
|
||||
return axios.get('/taxonomy/' + taxonomy + '/terms?hideempty=0' ).then( res => {
|
||||
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 )
|
||||
this.options.push(item);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue