From 2108e96cff99d82999406adff75d6483f819a8c9 Mon Sep 17 00:00:00 2001 From: Nicolas Pennec Date: Tue, 10 Sep 2024 17:23:54 +0200 Subject: [PATCH] [concepts] fix navigation crash from concepts page to shots page for a production without episode related to github issue #1527 --- src/components/pages/Concepts.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/pages/Concepts.vue b/src/components/pages/Concepts.vue index 8fa8d4e7f..f8e086e25 100644 --- a/src/components/pages/Concepts.vue +++ b/src/components/pages/Concepts.vue @@ -358,7 +358,9 @@ export default { async refreshConcepts() { this.loading.loadingConcepts = true try { - this.setCurrentEpisode('all') // mandatory to load all assets + if (this.isTVShow) { + this.setCurrentEpisode('all') // mandatory to load all assets of a TV show + } await this.loadAssets(true) await this.loadConcepts() } catch (err) {