Correction de setup_table_columns et autres

This commit is contained in:
Colin Maudry
2026-04-22 21:16:51 +02:00
parent eb8d7abe0d
commit 3e89dacff9
3 changed files with 3 additions and 2 deletions
+1
View File
@@ -2,6 +2,7 @@ import os
from shutil import rmtree
import dash_bootstrap_components as dbc
import pandas # noqa: F401 # eager import: avoid plotly's lazy-import race across Dash callback threads
import tomllib
from dash import Dash, Input, Output, State, dcc, html, page_container, page_registry
from dotenv import load_dotenv
+1 -1
View File
@@ -839,7 +839,7 @@ def get_top_org_table(data, org_type: str, extra_columns: list, filters: bool =
return html.Div()
columns, tooltip = setup_table_columns(
dff, hideable=False, exclude=[f"{org_type}_id"], new_columns=["Attributions"]
dff, hideable=False, exclude=[f"{org_type}_id"]
)
dff = add_links(dff)
data = dff.to_dicts()
Generated
+1 -1
View File
@@ -760,7 +760,7 @@ wheels = [
[[package]]
name = "decp-info"
version = "2.7.3"
version = "2.7.4"
source = { virtual = "." }
dependencies = [
{ name = "dash", extra = ["compress"] },