Kaynağa Gözat

Pour le dashboard on supprime la recherche des commentaires sans date

Sangfroid 5 ay önce
ebeveyn
işleme
0636ad03c7
1 değiştirilmiş dosya ile 1 ekleme ve 0 silme
  1. 1 0
      src/Repository/CommentaireRepository.php

+ 1 - 0
src/Repository/CommentaireRepository.php

@@ -34,6 +34,7 @@ class CommentaireRepository extends ServiceEntityRepository
     {
         return $this->createQueryBuilder('c')
             ->select("DATE_FORMAT(c.dateSubmitted, '%Y-%m') as month, COUNT(c.id) as entryCount")
+            ->where('c.dateSubmitted IS NOT NULL')
             ->groupBy('month')
             ->orderBy('month', 'ASC')
             ->getQuery()