From c8dfeb03c54aa4a88c9e29530f4abe5bb8b838e6 Mon Sep 17 00:00:00 2001 From: Marija Najdova Date: Wed, 20 Mar 2024 09:11:46 +0100 Subject: [PATCH] [docs] Update the versions dropdown to show v6 (#41557) --- docs/pages/_app.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/pages/_app.js b/docs/pages/_app.js index 05916ec32e58a6..1fde5b141d7e4d 100644 --- a/docs/pages/_app.js +++ b/docs/pages/_app.js @@ -166,6 +166,10 @@ function AppWrapper(props) { metadata: 'MUI Core', name: 'Material UI', versions: [ + { + text: 'v6 (next)', + href: `https://next.mui.com${languagePrefix}/material-ui/getting-started/`, + }, { text: `v${materialPkgJson.version}`, current: true }, { text: 'v4', @@ -192,6 +196,10 @@ function AppWrapper(props) { metadata: 'MUI Core', name: 'MUI System', versions: [ + { + text: 'v6 (next)', + href: `https://next.mui.com${languagePrefix}/system/getting-started/`, + }, { text: `v${systemPkgJson.version}`, current: true }, { text: 'v4', href: `https://v4.mui.com${languagePrefix}/system/basics/` }, {