0
0
Fork 0
mirror of https://github.com/VueTubeApp/VueTube synced 2024-11-22 11:15:14 +00:00

cut down on the amount of crap shown in the debug search menu

This commit is contained in:
Front 2022-02-26 14:45:34 -05:00
parent 613594baea
commit a97b2825ad
2 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View file

@ -2,3 +2,4 @@ node_modules
nuxt/dist
dist
package-lock.json
temp.js

View file

@ -21,8 +21,8 @@ export default {
methods: {
textChanged() {
this.$youtube.autoComplete(this.text, (data) => {
this.response = data;
this.$youtube.autoComplete(this.text, (res) => {
this.response = res.data;
});
}
}