Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
fix material ParameterInput (#10429)
Browse files Browse the repository at this point in the history
  • Loading branch information
JT00y authored Jun 21, 2024
1 parent 1cb2168 commit 4713d6e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export default function ParameterInput({
{Object.entries(_defaults).map(([k, parms]: [string, any]) => {
const compKey = `${entity}-${k}`
return (
<InputGroup key={compKey} name={k} label={''}>
<InputGroup key={compKey} name={k} label={k}>
{(() => {
switch (parms.type) {
case 'boolean':
Expand Down

0 comments on commit 4713d6e

Please sign in to comment.