diff --git a/CHANGELOG.md b/CHANGELOG.md index de6f68b..1a424b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,11 @@ - Ajout des codes et libellés NAF des titulaires - Affichage de l'activité (NAF) des titulaires sur leur page /titulaire -#### 2.8.0 +##### 2.8.1 (25 juin 2026) + +- Correction du bug dans la création de token d'API + +#### 2.8.0 (23 juin 2026) - Ajout des considérations sociales et environnementales à l'observatoire - Les filtres textuels dans les vues tableaux ne sont plus sensibles à l'accentuation diff --git a/pyproject.toml b/pyproject.toml index b30b2da..027d556 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "decp.info" description = "Interface d'exploration et d'analyse des marchés publics français." -version = "2.8.0" +version = "2.8.1" requires-python = ">= 3.10" authors = [{ name = "Colin Maudry", email = "colin@colmo.tech" }] dependencies = [ diff --git a/src/app.py b/src/app.py index 9f77da9..64d848a 100644 --- a/src/app.py +++ b/src/app.py @@ -221,7 +221,9 @@ navbar = dbc.Navbar( dbc.NavItem( dbc.NavLink( page["name"].replace(" ", " "), - href=page["relative_path"], + href=page["relative_path"] + "/presentation" + if page["name"] == "À propos" + else page["relative_path"], active="exact", ) ) diff --git a/src/pages/_apropos_shell.py b/src/pages/_apropos_shell.py index e112b9f..fc37ebf 100644 --- a/src/pages/_apropos_shell.py +++ b/src/pages/_apropos_shell.py @@ -3,16 +3,16 @@ from dash import Input, Output, State, callback, html SECTIONS = [ {"key": "presentation", "label": "Présentation", "href": "/a-propos/presentation"}, + {"key": "explorer", "label": "Explorer le projet", "href": "/a-propos/explorer"}, + {"key": "sources", "label": "Sources de données", "href": "/a-propos/sources"}, + {"key": "qualite", "label": "Qualité des données", "href": "/a-propos/qualite"}, { "key": "donnees-brutes", "label": "Données brutes", "href": "/a-propos/donnees-brutes", }, - {"key": "contact", "label": "Contact", "href": "/a-propos/contact"}, {"key": "contribuer", "label": "Contribuer", "href": "/a-propos/contribuer"}, - {"key": "explorer", "label": "Explorer le projet", "href": "/a-propos/explorer"}, - {"key": "qualite", "label": "Qualité des données", "href": "/a-propos/qualite"}, - {"key": "sources", "label": "Sources de données", "href": "/a-propos/sources"}, + {"key": "contact", "label": "Contact", "href": "/a-propos/contact"}, { "key": "mentions-legales", "label": "Mentions légales", diff --git a/src/pages/marche.py b/src/pages/marche.py index 49b42be..928e3db 100644 --- a/src/pages/marche.py +++ b/src/pages/marche.py @@ -135,6 +135,7 @@ def update_marche_info(marche, titulaires): "considerationsEnvironnementales", ] and col in marche + and marche[col] and "," in marche[col] ): col_values = marche[col].split(", ") diff --git a/uv.lock b/uv.lock index 04574ad..6580b31 100644 --- a/uv.lock +++ b/uv.lock @@ -864,7 +864,7 @@ wheels = [ [[package]] name = "decp-info" -version = "2.8.0" +version = "2.8.1" source = { virtual = "." } dependencies = [ { name = "authlib" },