We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51fbbbc commit ca9dd42Copy full SHA for ca9dd42
ui/frontend/reducers/configuration.ts
@@ -42,7 +42,7 @@ const DEFAULT: State = {
42
primaryAction: PrimaryActionAuto.Auto,
43
channel: Channel.Stable,
44
mode: Mode.Debug,
45
- edition: Edition.Rust2018,
+ edition: Edition.Rust2021,
46
backtrace: Backtrace.Disabled,
47
};
48
ui/frontend/selectors/index.ts
@@ -122,7 +122,7 @@ export const getChannelLabel = (state: State) => {
122
123
export const isEditionDefault = createSelector(
124
editionSelector,
125
- edition => edition == Edition.Rust2018,
+ edition => edition == Edition.Rust2021,
126
);
127
128
export const getBacktraceSet = (state: State) => (
0 commit comments