From 259a51023fdf47bbff18920257d1b58cb0d065c5 Mon Sep 17 00:00:00 2001 From: chao-xian Date: Mon, 9 Aug 2021 21:13:48 +0100 Subject: [PATCH] Remove conditional from A/B test meta tag This was only being output on the page when on the "B" side of the test; the meta tag should be added to the page for all sides of the test so it can be picked up by analytics and the browser extension. --- app/views/layouts/application.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index 91e9b473b..4090da5fc 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -28,7 +28,7 @@ <% end %> - <%= explore_menu_variant.analytics_meta_tag.html_safe if explore_menu_testable? %> + <%= explore_menu_variant.analytics_meta_tag.html_safe %> <%= yield :extra_head_content %>