Don’t fetch lists if query is empty

This commit is contained in:
Sam Carlton 2020-12-11 15:10:56 -06:00
parent 0725a82b55
commit c5e8ceb15d

View file

@ -158,9 +158,10 @@ export default {
// console.log('$event', $event) // console.log('$event', $event)
this.query = $event this.query = $event
// If fetched lists have alraedy been loaded in // If fetched lists have already been loaded in
// OR if there's no query
// then stop // then stop
if (this.fetchedAppList.length !== 0) return if (this.fetchedAppList.length !== 0 || this.query.trim().length === 0) return
const fetchedListUrls = [ const fetchedListUrls = [
'/game-list.json', '/game-list.json',