From 7fdf97660dd8202296e4423bc4e4179d005cba19 Mon Sep 17 00:00:00 2001 From: Eric Date: Wed, 22 Nov 2023 18:45:06 -0600 Subject: [PATCH] Website: Fix mobile filtered pricing table (#15304) Changes: - Moved a `v-if` that was placed on the wrong element on the mobile (filtered) pricing features table (currently, just the name of the feature is hidden, not the table itself) - Reduced complexity of conditional rendering on the filter pricing features table. --- website/views/pages/pricing.ejs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/views/pages/pricing.ejs b/website/views/pages/pricing.ejs index 9ac46a2ef9..2eb8b52860 100644 --- a/website/views/pages/pricing.ejs +++ b/website/views/pages/pricing.ejs @@ -139,7 +139,7 @@ - + {{feature.name}}{{feature.comingSoon ? '*' : ''}} checkmark @@ -152,8 +152,8 @@ <%// Mobile filtered features tables %>

{{category.categoryName}}

-
-
+
+
{{feature.name}}{{ feature.comingSoon ? '*' : ''}}