[PUI] Parameter title (#6763)

* Change panel heading

"Parameters" -> "Part Parameters"

* Remove old code
This commit is contained in:
Oliver 2024-03-20 18:24:51 +11:00 committed by GitHub
parent 0b7bfdb4a4
commit 5de56f5cd8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -176,7 +176,6 @@ export default function CategoryDetail({}: {}) {
label: t`Category Details`,
icon: <IconInfoCircle />,
content: detailsPanel
// hidden: !category?.pk,
},
{
name: 'parts',
@ -200,7 +199,7 @@ export default function CategoryDetail({}: {}) {
},
{
name: 'parameters',
label: t`Parameters`,
label: t`Part Parameters`,
icon: <IconListDetails />,
content: <ParametricPartTable categoryId={id} />
}