Skip to content

Commit

Permalink
correction des tests ne passant plus suite au fix sur le planning
Browse files Browse the repository at this point in the history
  • Loading branch information
agallou committed Sep 19, 2024
1 parent b4578c6 commit 5617d61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Resources/views/blog/planning.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
{% for room in rooms %}
{% if slot[room.id] is defined %}
{% set rows = slot[room.id] %}
{% set numberOfRowForThisSlot = rows[0].length / prevision %}
{% set numberOfRowForThisSlot = rows|first.length / prevision %}

{% set hasConf = hasConf|merge({(room.name|trim):numberOfRowForThisSlot}) %}
{# Boucle pour afficher chaque événement dans la salle #}
Expand Down

0 comments on commit 5617d61

Please sign in to comment.