We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 023ae0b commit b6ecba0Copy full SHA for b6ecba0
lib/algora_web/live/org/job_live.ex
@@ -1027,7 +1027,7 @@ defmodule AlgoraWeb.Org.JobLive do
1027
</div>
1028
1029
<div class="grid grid-cols-[repeat(17,1fr)] gap-1">
1030
- <%= for week <- get_in(@heatmap_data, ["weeks"]) |> Enum.take(-17) do %>
+ <%= for week <- get_in(@heatmap_data, ["weeks"]) |> Enum.filter(fn week -> length(week["contributionDays"]) == 7 end) |> Enum.take(-17) do %>
1031
<div class="grid grid-rows-7 gap-1">
1032
<%= for day <- week["contributionDays"] do %>
1033
<div
0 commit comments