fix: nulls
This commit is contained in:
parent
ed14199918
commit
2aa31e0405
|
@ -25,7 +25,7 @@ const Vector = ({
|
|||
],
|
||||
);
|
||||
}}
|
||||
value={value[0]}
|
||||
value={value[0] || 0}
|
||||
/>
|
||||
</label>
|
||||
<label>
|
||||
|
@ -41,7 +41,7 @@ const Vector = ({
|
|||
],
|
||||
);
|
||||
}}
|
||||
value={value[1]}
|
||||
value={value[1] || 0}
|
||||
/>
|
||||
</label>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue
Block a user