mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-26 22:50:26 +01:00
Fixes circuits bluescreening whenever you try to put text or numbers into a STRING or ANY type field (#95946)
## About The Pull Request Closes #95865 ## Changelog 🆑 fix: Fixed circuits bluescreening whenever you try to put text or numbers into a STRING or ANY type field /🆑
This commit is contained in:
@@ -17,7 +17,7 @@ export const FUNDAMENTAL_DATA_TYPES = {
|
||||
<Input
|
||||
placeholder={name}
|
||||
value={value}
|
||||
onChange={setValue}
|
||||
onChange={(value) => setValue(value)}
|
||||
width="96px"
|
||||
/>
|
||||
</BasicInput>
|
||||
@@ -121,7 +121,7 @@ export const FUNDAMENTAL_DATA_TYPES = {
|
||||
<Input
|
||||
placeholder={name}
|
||||
value={value}
|
||||
onChange={setValue}
|
||||
onChange={(value) => setValue(value)}
|
||||
width="64px"
|
||||
/>
|
||||
</Stack.Item>
|
||||
|
||||
Reference in New Issue
Block a user