|
70 | 70 | "", |
71 | 71 | "", |
72 | 72 | ), |
73 | | - ("", "", "", "", ""), |
74 | 73 | ] |
75 | 74 |
|
76 | 75 |
|
|
132 | 131 |
|
133 | 132 | SUPPORT_BOOLEAN_SECTION = [ |
134 | 133 | ("White Glove Onboarding", False, False, False, True), |
| 134 | + ("", "", "", "", ""), |
135 | 135 | # ... not in the notion docs |
136 | 136 | # ("SLAs Available", False, False, False, True), |
137 | | - ("", "", "", "", ""), |
138 | 137 | ] |
139 | 138 |
|
140 | 139 | PLAN_BUTTONS = [ |
@@ -300,6 +299,17 @@ def table_body_oss() -> rx.Component: |
300 | 299 | create_table_body( |
301 | 300 | *[create_table_row(row) for row in ASTERIX_SECTION_ENTERPRISE], |
302 | 301 | ), |
| 302 | + rx.table.header( |
| 303 | + create_table_row_header("Support"), |
| 304 | + class_name="relative", |
| 305 | + ), |
| 306 | + create_table_body( |
| 307 | + *[create_table_row(row) for row in SUPPORT_TEXT_SECTION], |
| 308 | + *[ |
| 309 | + create_checkmark_row(feature, checks) |
| 310 | + for feature, *checks in SUPPORT_BOOLEAN_SECTION |
| 311 | + ], |
| 312 | + ), |
303 | 313 | class_name="w-full overflow-x-auto max-w-[69.125rem] -mt-[2rem]", |
304 | 314 | ) |
305 | 315 |
|
@@ -353,17 +363,6 @@ def table_body_hosting() -> rx.Component: |
353 | 363 | for feature, *checks in SECURITY_SECTION |
354 | 364 | ], |
355 | 365 | ), |
356 | | - rx.table.header( |
357 | | - create_table_row_header("Support"), |
358 | | - class_name="relative", |
359 | | - ), |
360 | | - create_table_body( |
361 | | - *[create_table_row(row) for row in SUPPORT_TEXT_SECTION], |
362 | | - *[ |
363 | | - create_checkmark_row(feature, checks) |
364 | | - for feature, *checks in SUPPORT_BOOLEAN_SECTION |
365 | | - ], |
366 | | - ), |
367 | 366 | class_name="w-full overflow-x-auto max-w-[69.125rem] -mt-[2rem]", |
368 | 367 | ) |
369 | 368 |
|
|
0 commit comments