From 05b4267bb43fbd73d0c8491c0d702c323072bac1 Mon Sep 17 00:00:00 2001 From: Elijah Ahianyo Date: Thu, 11 Jan 2024 14:03:41 -0800 Subject: [PATCH] Pin version for data editor deps (#2383) --- reflex/components/datadisplay/dataeditor.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/reflex/components/datadisplay/dataeditor.py b/reflex/components/datadisplay/dataeditor.py index f4b327aa6..ce9e3134f 100644 --- a/reflex/components/datadisplay/dataeditor.py +++ b/reflex/components/datadisplay/dataeditor.py @@ -109,7 +109,11 @@ class DataEditor(NoSSRComponent): tag = "DataEditor" is_default = True library: str = "@glideapps/glide-data-grid@^5.3.0" - lib_dependencies: List[str] = ["lodash", "marked", "react-responsive-carousel"] + lib_dependencies: List[str] = [ + "lodash@^4.17.21", + "marked@^4.0.10", + "react-responsive-carousel@^3.2.7", + ] # Number of rows. rows: Var[int]