From ed742e639196b5356b04efe06c1ded946b22030d Mon Sep 17 00:00:00 2001 From: huong-li-nguyen Date: Mon, 15 Jul 2024 18:24:25 +0200 Subject: [PATCH] Fix typo --- vizro-core/examples/chart-gallery/utils/_pages.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vizro-core/examples/chart-gallery/utils/_pages.py b/vizro-core/examples/chart-gallery/utils/_pages.py index c4abd242d..db0e099c5 100644 --- a/vizro-core/examples/chart-gallery/utils/_pages.py +++ b/vizro-core/examples/chart-gallery/utils/_pages.py @@ -87,7 +87,7 @@ def sankey(data_frame: pd.DataFrame, source: str, target: str, value: str, label source=data_frame[source], target=data_frame[target], value=data_frame[value], - abel=labels, + label=labels, color="rgba(205, 209, 228, 0.4)", ), )