From c43a7047774ddbbe89f51635ace3b4a093763ae3 Mon Sep 17 00:00:00 2001 From: Loic Masi Date: Wed, 8 Apr 2026 21:17:40 +0200 Subject: [PATCH] =?UTF-8?q?#199=20:=20Styles=20manquants=20sur=20les=20tit?= =?UTF-8?q?res=20en=20page=20d'accueil=20et=20modification=20du=20d=C3=A9p?= =?UTF-8?q?loiement.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/deploy-prod.yaml | 2 +- Webzine.Repository/DbTitreRepository.cs | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy-prod.yaml b/.gitea/workflows/deploy-prod.yaml index 0bb9c60..b2a359a 100644 --- a/.gitea/workflows/deploy-prod.yaml +++ b/.gitea/workflows/deploy-prod.yaml @@ -3,7 +3,7 @@ name: Deploiement API Prod Docker on: push: branches: - - dev + - main jobs: deploy: diff --git a/Webzine.Repository/DbTitreRepository.cs b/Webzine.Repository/DbTitreRepository.cs index a581fe9..ae14698 100644 --- a/Webzine.Repository/DbTitreRepository.cs +++ b/Webzine.Repository/DbTitreRepository.cs @@ -421,7 +421,8 @@ public class DbTitreRepository : ITitreRepository .AsNoTracking() .OrderByDescending(t => t.DateCreation) .Paginate(offset, limit) - .Include(t => t.Artiste); + .Include(t => t.Artiste) + .Include(a => a.Styles); } catch (Exception ex) {