Skip to content

Commit

Permalink
chore: use the next generation New Workflow UI by default (chaos-me…
Browse files Browse the repository at this point in the history
…sh#3718)

* chore: use the next generation `New Workflow` UI by default

Signed-off-by: Yue Yang <[email protected]>

* chore: update changelog

Signed-off-by: Yue Yang <[email protected]>

Signed-off-by: Yue Yang <[email protected]>
  • Loading branch information
g1eny0ung authored Oct 24, 2022
1 parent 3c8abd5 commit 2f0e393
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ For more information and how-to, see [RFC: Keep A Changelog](https://github.com/

### Changed

- Nothing
- Use the next generation `New Workflow` UI by default [#3718](https://github.com/chaos-mesh/chaos-mesh/pull/3718)

### Deprecated

Expand Down
2 changes: 1 addition & 1 deletion ui/app/src/slices/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const initialState = {
debugMode: LS.get('debug-mode') === 'true',
enableKubeSystemNS: LS.get('enable-kube-system-ns') === 'true',
useNewPhysicalMachine: LS.get('use-new-physical-machine') === 'true',
useNextWorkflowInterface: LS.get('use-next-workflow-interface') === 'true',
useNextWorkflowInterface: (LS.get('use-next-workflow-interface') || 'true') === 'true',
}

const settingsSlice = createSlice({
Expand Down

0 comments on commit 2f0e393

Please sign in to comment.