Compare commits
2 Commits
0cbb985945
...
c6f3f7a239
Author | SHA1 | Date |
---|---|---|
|
c6f3f7a239 | |
|
f0a6e80e5a |
|
@ -58,6 +58,8 @@ async function searchMovies() {
|
|||
|
||||
this.movies = movies;
|
||||
this.totalCount = totalCount;
|
||||
|
||||
this.$refs.tiles.scrollIntoView();
|
||||
}
|
||||
|
||||
async function mounted() {
|
||||
|
@ -76,7 +78,7 @@ export default {
|
|||
return {
|
||||
movies: [],
|
||||
totalCount: 0,
|
||||
limit: 30,
|
||||
limit: 5,
|
||||
};
|
||||
},
|
||||
watch: {
|
||||
|
|
|
@ -20,7 +20,10 @@
|
|||
<script>
|
||||
function search(typing) {
|
||||
if (!typing || this.eager) {
|
||||
this.$router.replace({ query: { query: this.query || undefined } });
|
||||
this.$router.replace({
|
||||
query: { query: this.query || undefined },
|
||||
params: { ...this.$route.params, pageNumber: 1 },
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "traxxx",
|
||||
"version": "1.198.7",
|
||||
"version": "1.198.8",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "traxxx",
|
||||
"version": "1.198.7",
|
||||
"version": "1.198.8",
|
||||
"description": "All the latest porn releases in one place",
|
||||
"main": "src/app.js",
|
||||
"scripts": {
|
||||
|
|
Loading…
Reference in New Issue