Input fields now do update the text color

This commit is contained in:
sageTheDM 2024-10-08 07:33:02 +02:00
parent 601b0324b8
commit d1602e3ad7
3 changed files with 7 additions and 0 deletions

View file

@ -22,6 +22,7 @@ const TextSetting: React.FC<TextSettingProps> = ({ label, value, setValue, type,
value={value} // Set the current value
onChange={handleTextChange} // Handle input changes
placeholder={placeholder} // Set the placeholder text
className='textInputField'
/>
</div>
);