From 89968aaeceb2716348c26c74b7725445a84fbd56 Mon Sep 17 00:00:00 2001 From: Muhammad Ali Date: Mon, 16 Feb 2026 14:45:25 +0300 Subject: [PATCH] remove condition to check for expereimental feature enable (#4391) * remove condition to check for expereimental feature enable * update CHANGELOG.md --------- Co-authored-by: Joe Clark --- CHANGELOG.md | 7 +++++-- lib/lightning_web/live/components/menu.ex | 16 +++++++--------- 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a96bb2e51..aff1759cd3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,11 @@ and this project adheres to ### Fixed +- Fixed issue with `Sandboxes` menu item not visible for users without + experimental features enabled + [#4367](https://github.com/OpenFn/lightning/issues/4367) + + ## [2.15.14] - 2026-02-13 ## [2.15.14-pre] - 2026-02-11 @@ -50,8 +55,6 @@ and this project adheres to ## [2.15.13] - 2026-02-06 -## [2.15.13-pre1] - 2026-02-05 - ### Fixed - Search on history page for body and log failing diff --git a/lib/lightning_web/live/components/menu.ex b/lib/lightning_web/live/components/menu.ex index 27bfb77fc4..0cfda7ef93 100644 --- a/lib/lightning_web/live/components/menu.ex +++ b/lib/lightning_web/live/components/menu.ex @@ -20,15 +20,13 @@ defmodule LightningWeb.Components.Menu do Workflows - <%= if Lightning.Accounts.experimental_features_enabled?(@current_user) do %> - <.menu_item - to={~p"/projects/#{@project_id}/sandboxes"} - active={@active_menu_item == :sandboxes} - > - - Sandboxes - - <% end %> + <.menu_item + to={~p"/projects/#{@project_id}/sandboxes"} + active={@active_menu_item == :sandboxes} + > + + Sandboxes + <.menu_item to={~p"/projects/#{@project_id}/history"}