Fixed movie stash hover color. Added secondary release date sorting on stashed releases.

This commit is contained in:
DebaucheryLibrarian 2021-09-12 00:24:36 +02:00
parent 731abc79ee
commit 14f4d24872
2 changed files with 3 additions and 3 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) {