diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d964cdfc4..ff0ae3e2a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,7 +25,9 @@ and this project adheres to ### Fixed -## [2.15.13] - 2026-02-06 +- 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 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"}