full functionality

This commit is contained in:
Víctor Losada Hernández
2026-08-24 18:46:22 +02:00
parent 705fc1982e
commit a83ac83ed3
3 changed files with 53 additions and 8 deletions
@@ -52,7 +52,7 @@ const SettingsEditor = ({settings, updateSettings = () => {} }) => {
return (
<div className='settingsEditor'>
<h1>Editor Settings</h1>
{/*
<div className='field title'>
<label htmlFor='blockShading'>
Background Shading of blocks in editor
@@ -64,6 +64,19 @@ const SettingsEditor = ({settings, updateSettings = () => {} }) => {
checked={currentSettings.blockShading}
onChange={(e) => handleFieldChange('blockShading', e)}
/>
</div> */}
<div className='field title'>
<label htmlFor='autoCloseBrackets'>
Automatically close brackets
</label>
<input
id='autoCloseBrackets'
type='checkbox'
name='autoCloseBrackets'
checked={currentSettings.autoCloseBrackets}
onChange={(e) => handleFieldChange('autoCloseBrackets', e)}
/>
</div>
<div className='field title'>