nicolium: add a way to use the new timeline

Signed-off-by: nicole mikołajczyk <git@mkljczk.pl>
This commit is contained in:
nicole mikołajczyk
2026-03-01 21:07:48 +01:00
parent 335910611c
commit c9c3d50814
5 changed files with 203 additions and 43 deletions

View File

@@ -902,6 +902,29 @@ const Preferences = () => {
</ListItem>
</List>
)}
<List>
<ListItem
label={
<FormattedMessage
id='preferences.fields.experimental_timeline_label'
defaultMessage='Enable experimental timeline'
/>
}
hint={
<FormattedMessage
id='preferences.fields.experimental_timeline_hint'
defaultMessage='It replaces the stable timeline experience and might not offer all features.'
/>
}
>
<SettingToggle
settings={settings}
settingPath={['experimentalTimeline']}
onChange={onToggleChange}
/>
</ListItem>
</List>
</Form>
);
};