From c685fd471a61e3f700127e620b7a9ba8a5b70de8 Mon Sep 17 00:00:00 2001 From: MuhammadMullah Date: Thu, 5 Feb 2026 20:56:15 +0300 Subject: [PATCH 1/2] remove condition to check for expereimental feature enable --- lib/lightning_web/live/components/menu.ex | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) 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"} From 34e1d8cc26dcef40ac9d10a9bef0b9a4ea282d96 Mon Sep 17 00:00:00 2001 From: MuhammadMullah Date: Fri, 6 Feb 2026 19:22:52 +0300 Subject: [PATCH 2/2] update CHANGELOG.md --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e6004dd3b7..323af1c876 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,10 @@ 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.13-pre1] - 2026-02-05 ### Fixed