[OPIK-3753] [FE] [BE] Remove dashboard feature toggle support#4687
Merged
andriidudar merged 1 commit intomainfrom Jan 9, 2026
Merged
Conversation
Remove dashboardsEnabled feature toggle from both frontend and backend codebase. Backend changes: - Removed dashboardsEnabled from ServiceTogglesConfig.java - Removed dashboardsEnabled from config.yml and config-test.yml Frontend changes: - Removed DASHBOARDS_ENABLED from FeatureToggleKeys enum - Removed dashboard toggle from feature-toggles-provider default state - Removed feature flag checks from SideBar, ViewSelector, and CompareExperimentsDetails components - Cleaned up unused imports The dashboard feature is now permanently enabled without toggle support. Implements OPIK-3753: Remove Dashboard feature toggle support
Contributor
Backend Tests Results 381 files 381 suites 52m 9s ⏱️ Results for commit 361569d. |
aadereiko
approved these changes
Jan 9, 2026
Collaborator
aadereiko
left a comment
There was a problem hiding this comment.
NIce cleanup, thank you!
andrescrz
approved these changes
Jan 9, 2026
12 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Details
Remove the
dashboardsEnabledfeature toggle from both frontend and backend codebase. The Dashboard feature is now permanently enabled and no longer requires toggle support.Backend Changes:
dashboardsEnabledfield fromServiceTogglesConfig.javadashboardsEnabledconfiguration fromconfig.ymlandconfig-test.ymlFrontend Changes:
DASHBOARDS_ENABLEDfromFeatureToggleKeysenumfeature-toggles-providerdefault stateSideBar,ViewSelector, andCompareExperimentsDetailscomponentsuseIsFeatureEnabledwhere no longer needed)The dashboard feature is now always available without any toggle checks.
Change checklist
Issues
Testing
mvn compile -DskipTestsnpm run lint)npx tsc --noEmit)Documentation
N/A - No documentation changes required for this internal cleanup