diff --git a/services/webui/src/app/store/getters.ts b/services/webui/src/app/store/getters.ts index d6fba57..d1e2e5c 100644 --- a/services/webui/src/app/store/getters.ts +++ b/services/webui/src/app/store/getters.ts @@ -58,6 +58,9 @@ export const getters: GettersTypes & GetterTree = { // Movie Store --------------------------------------------------------------------------------- + /** + * Fetch the stored movie references for the provided movies + */ movies: (state: IState) => (movies: IMovie[]) => { return movies.map(movie => state.movies[movie.tmdbId]?.movie || movie); }