disable changing the board profile if its a fixed BBQKees one

This commit is contained in:
proddy
2024-08-09 14:43:13 +02:00
parent 251b0ea287
commit 681cdfb01e

View File

@@ -166,7 +166,7 @@ const ApplicationSettings = () => {
name="board_profile" name="board_profile"
label={LL.BOARD_PROFILE()} label={LL.BOARD_PROFILE()}
value={data.board_profile} value={data.board_profile}
disabled={processingBoard} disabled={processingBoard || hardwareData.model.startsWith('BBQKees')}
fullWidth fullWidth
variant="outlined" variant="outlined"
onChange={changeBoardProfile} onChange={changeBoardProfile}