fix: remove redundant field from ParameterInfo

This commit is contained in:
Nybkox
2024-11-28 09:57:59 +01:00
parent 6b155083ef
commit 926949dc89
4 changed files with 23 additions and 24 deletions

View File

@@ -11,8 +11,8 @@
<AppObjectCore
{...$$restProps}
{data}
title={data.pureName}
extInfo={data.isOutputParameter ? `data.fullDataType OUT` : data.fullDataType}
title={data.parameterName}
extInfo={data.isOutputParameter ? `${data.dataType} OUT` : data.dataType}
icon={'icon parameter'}
disableHover
/>