removed handle from code component

This commit is contained in:
anovazzi1 2023-03-29 18:46:08 -03:00
commit 4a04153c9e

View file

@ -54,7 +54,7 @@ export default function ParameterComponent({
{title}
<span className="text-red-600">{required ? " *" : ""}</span>
</div>
{left && (type === "str" || type === "bool" || type === "float") ? (
{left && (type === "str" || type === "bool" || type === "float"||type=="code") ? (
<></>
) : (
<Tooltip title={tooltipTitle + (required ? " (required)" : "")}>