diff --git a/services/web/app/src/Features/Project/ProjectController.js b/services/web/app/src/Features/Project/ProjectController.js index 1b4b59b0bf..bb79c5eb5a 100644 --- a/services/web/app/src/Features/Project/ProjectController.js +++ b/services/web/app/src/Features/Project/ProjectController.js @@ -702,7 +702,7 @@ const ProjectController = { SplitTestHandler.getAssignment( req, res, - 'history-view', + 'history-view-version', (error, assignment) => { // do not fail editor load if assignment fails if (error) { diff --git a/services/web/frontend/js/features/history/components/diff-view/toolbar/toolbar.tsx b/services/web/frontend/js/features/history/components/diff-view/toolbar/toolbar.tsx index c769285f8f..f9888595fa 100644 --- a/services/web/frontend/js/features/history/components/diff-view/toolbar/toolbar.tsx +++ b/services/web/frontend/js/features/history/components/diff-view/toolbar/toolbar.tsx @@ -19,7 +19,7 @@ export default function Toolbar({ diff, selection }: ToolbarProps) { return (
diff --git a/services/web/frontend/js/ide/history/HistoryV2Manager.js b/services/web/frontend/js/ide/history/HistoryV2Manager.js index 6a0825da73..330ff8082e 100644 --- a/services/web/frontend/js/ide/history/HistoryV2Manager.js +++ b/services/web/frontend/js/ide/history/HistoryV2Manager.js @@ -126,7 +126,9 @@ export default HistoryManager = (function () { } isReact() { - return getMeta('ol-splitTestVariants')?.['history-view'] === 'react' + return ( + getMeta('ol-splitTestVariants')?.['history-view-version'] === 'react' + ) } hardReset() {