Compare commits

...

2 Commits

Author SHA1 Message Date
DebaucheryLibrarian c21bd8b01e 1.199.1 2021-09-12 00:24:42 +02:00
DebaucheryLibrarian 14f4d24872 Fixed movie stash hover color. Added secondary release date sorting on stashed releases. 2021-09-12 00:24:36 +02:00
4 changed files with 5 additions and 5 deletions

View File

@ -247,7 +247,7 @@ export default {
fill: var(--lighten-weak);
filter: drop-shadow(0 0 2px var(--darken));
&:hover,
&:hover.unstashed,
&.stashed {
fill: var(--primary);
}

View File

@ -73,7 +73,7 @@ function initStashesActions(store, _router) {
}
}
scenesConnection: stashesScenesConnection(
orderBy: CREATED_AT_DESC
orderBy: [CREATED_AT_DESC, RELEASE_BY_SCENE_ID__DATE_DESC]
first: $limit
offset: $offset
) @include(if: $includeScenes) {
@ -86,7 +86,7 @@ function initStashesActions(store, _router) {
}
}
moviesConnection: stashesMoviesConnection(
orderBy: CREATED_AT_DESC
orderBy: [CREATED_AT_DESC, MOVIE_BY_MOVIE_ID__DATE_DESC]
first: $limit
offset: $offset
) @include(if: $includeMovies) {

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "traxxx",
"version": "1.199.0",
"version": "1.199.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "traxxx",
"version": "1.199.0",
"version": "1.199.1",
"description": "All the latest porn releases in one place",
"main": "src/app.js",
"scripts": {