@@ -69,8 +69,9 @@ useHead({
69
69
</div >
70
70
</div >
71
71
</div >
72
+ <br />
72
73
<div v-if =" entries != null" >
73
- <h5 >Results</h5 >
74
+ <h5 >{{ entries.length }} Results</h5 >
74
75
<div v-if =" entries.length == 0" >
75
76
Welp, it looks like there are no results matching your query
76
77
</div >
@@ -112,7 +113,7 @@ export default {
112
113
if (this .textQuery ) {
113
114
params[" q" ] = this .textQuery ;
114
115
}
115
- let url = baseurl + new URLSearchParams ({ results: 1000 , ... params });
116
+ let url = baseurl + new URLSearchParams ({ results: 10000 , ... params });
116
117
117
118
fetch (url).then ((response ) => {
118
119
let gameblob = response .json ().then ((data ) => {
@@ -139,17 +140,17 @@ export default {
139
140
};
140
141
}
141
142
}
142
- if (this .$route .query .type ) {
143
+ if (this .$route .query .typetag ) {
143
144
if (
144
145
[" all" , " game" , " demo" , " music" , " tool" ].includes (
145
- this .$route .query .type .toLowerCase (),
146
+ this .$route .query .typetag .toLowerCase (),
146
147
)
147
148
) {
148
149
this .selectedType = {
149
150
name:
150
- this .$route .query .type .charAt (0 ).toUpperCase () +
151
- this .$route .query .type .slice (1 ),
152
- code: this .$route .query .type .toLowerCase (),
151
+ this .$route .query .typetag .charAt (0 ).toUpperCase () +
152
+ this .$route .query .typetag .slice (1 ),
153
+ code: this .$route .query .typetag .toLowerCase (),
153
154
};
154
155
}
155
156
}
@@ -176,7 +177,7 @@ export default {
176
177
{ name: " Game" , code: " game" },
177
178
{ name: " Demo" , code: " demo" },
178
179
{ name: " Music" , code: " music" },
179
- { name: " Tool" , code: " homebrew " },
180
+ { name: " Tool" , code: " tool " },
180
181
],
181
182
selectedTags: null ,
182
183
groupedCities: [
0 commit comments