Projet

Général

Profil

0003-dataviz-fix-typo-in-graphs-font-family-60685.patch

Valentin Deniaud, 17 janvier 2022 16:26

Télécharger (892 octets)

Voir les différences:

Subject: [PATCH 3/3] dataviz: fix typo in graphs font family (#60685)

 combo/apps/dataviz/models.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
combo/apps/dataviz/models.py
325 325
        response.raise_for_status()
326 326
        response = response.json()
327 327

  
328
        style = pygal.style.DefaultStyle(font_family='OpenSans, sans-serif', background='transparent')
328
        style = pygal.style.DefaultStyle(font_family='"Open Sans", sans-serif', background='transparent')
329 329

  
330 330
        chart = {
331 331
            'bar': pygal.Bar,
332
-