Spaces:
Running
Running
fix error
Browse files
web.py
CHANGED
@@ -107,7 +107,7 @@ data_filtering_table_data = pd.DataFrame(
|
|
107 |
}
|
108 |
)
|
109 |
styled_table = (
|
110 |
-
|
111 |
**{"background-color": "#E1EEDB"},
|
112 |
subset=pd.IndexSlice[0, :], # Row 0 with a light green background
|
113 |
)
|
@@ -197,7 +197,7 @@ qf_filtering_table_data = pd.DataFrame(
|
|
197 |
}
|
198 |
)
|
199 |
styled_table = (
|
200 |
-
|
201 |
**{"background-color": "#E1EEDB"},
|
202 |
subset=pd.IndexSlice[0, :], # Row 0 with a light green background
|
203 |
)
|
|
|
107 |
}
|
108 |
)
|
109 |
styled_table = (
|
110 |
+
data_filtering_table_data.style.set_properties(
|
111 |
**{"background-color": "#E1EEDB"},
|
112 |
subset=pd.IndexSlice[0, :], # Row 0 with a light green background
|
113 |
)
|
|
|
197 |
}
|
198 |
)
|
199 |
styled_table = (
|
200 |
+
qf_filtering_table_data.style.set_properties(
|
201 |
**{"background-color": "#E1EEDB"},
|
202 |
subset=pd.IndexSlice[0, :], # Row 0 with a light green background
|
203 |
)
|