Converted the date format in the chart data from full timestamp to just date.

This commit is contained in:
Paul Gauthier 2024-05-15 10:48:16 -07:00
parent cacff017d0
commit 07963921f9

View file

@ -16,7 +16,7 @@ excerpt: A comparison of LLM code editing skill based on the release dates of th
{% for row in site.data.edit_leaderboard %}
{% if row.released %}
{
x: new Date('{{ row.released | date: "%Y-%m-%dT%H:%M:%S" }}'),
x: new Date('{{ row.released | date: "%Y-%m-%d" }}'),
y: {{ row.pass_rate_2 }},
label: '{{ row.model }}'
},