custom board option only in developer mode

This commit is contained in:
MichaelDvP
2026-01-08 14:43:35 +01:00
parent dd0ea5df0e
commit fd0734d8d8

View File

@@ -503,9 +503,11 @@ const ApplicationSettings = () => {
boardProfileItems boardProfileItems
)} )}
<Divider /> <Divider />
<MenuItem key={'CUSTOM'} value={'CUSTOM'}> {(data.board_profile === 'CUSTOM' || data.developer_mode) && (
{LL.CUSTOM()}&hellip; <MenuItem key={'CUSTOM'} value={'CUSTOM'}>
</MenuItem> {LL.CUSTOM()}&hellip;
</MenuItem>
)}
</TextField> </TextField>
{data.board_profile === 'CUSTOM' && ( {data.board_profile === 'CUSTOM' && (
<> <>