field and filter types alter console log

This commit is contained in:
Eduardo humberto 2018-03-23 13:52:58 -03:00
parent f0f1805e05
commit 429f8509e9
9 changed files with 17 additions and 17 deletions

View File

@ -88,7 +88,7 @@
}
})
.catch(error => {
console.log(error);
this.$console.log(error);
});
},
getOptions( parent, level = 0 ){ // retrieve only ids

View File

@ -175,7 +175,7 @@
}
})
.catch(error => {
console.log(error);
this.$console.log(error);
});
},
labelNewTerms(){

View File

@ -165,7 +165,7 @@
}
})
.catch(error => {
console.log(error);
this.$console.log(error);
});
},
fetchFieldsFromCollection( value ){

View File

@ -28,7 +28,7 @@
}
})
.catch(error => {
console.log(error);
this.$console.log(error);
});
}
},
@ -91,7 +91,7 @@
}
})
.catch(error => {
console.log(error);
this.$console.log(error);
});
} else {
this.options = [];

View File

@ -59,7 +59,7 @@
}
})
.catch(error => {
console.log(error);
this.$console.log(error);
});
},
data(){
@ -104,7 +104,7 @@
promise.then( () => {
this.isLoading = false;
}).catch( error => {
console.log('error select', error );
this.$console.log('error select', error );
this.isLoading = false;
});
},
@ -127,12 +127,12 @@
.then( res => {
for (let item of res.data) {
// instance.selected.push({ label: item.title, value: item.id, img: '' });
console.log(item.title);
this.$console.log(item.title);
instance.results = item.title;
}
})
.catch(error => {
console.log(error);
this.$console.log(error);
});
} else {
instance.results = metadata.value;

View File

@ -31,7 +31,7 @@
}
})
.catch(error => {
console.log(error);
this.$console.log(error);
});
},
data(){
@ -72,7 +72,7 @@
this.selectedValues()
})
.catch( error => {
console.log('error select', error );
this.$console.log('error select', error );
this.isLoading = false;
});
},

View File

@ -65,7 +65,7 @@
}
})
.catch(error => {
console.log(error);
this.$console.log(error);
});
},
data(){

View File

@ -36,7 +36,7 @@
}
})
.catch(error => {
console.log(error);
this.$console.log(error);
});
},
data(){
@ -71,7 +71,7 @@
instance.selectedValues();
})
.catch( error => {
console.log('error select', error );
this.$console.log('error select', error );
this.isLoading = false;
});
},

View File

@ -33,7 +33,7 @@
}
})
.catch(error => {
console.log(error);
this.$console.log(error);
});
},
data(){
@ -83,7 +83,7 @@
promise.then(() => {
this.isLoading = false;
}).catch( error => {
console.log('error select', error );
this.$console.log('error select', error );
this.isLoading = false;
});
},
@ -109,7 +109,7 @@
}
})
.catch(error => {
console.log(error);
this.$console.log(error);
});
} else {
for (let item of metadata.value) {