fix(ui): change tags to properties in ml model view (#12789)

This commit is contained in:
Hyejin Yoon 2025-03-06 04:59:21 +09:00 committed by GitHub
parent dbf33dba77
commit 9cb5886d6d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View File

@ -125,8 +125,8 @@ export default function MLGroupModels() {
},
},
{
title: 'Tags',
key: 'tags',
title: 'Properties',
key: 'properties',
width: 200,
render: (_: any, record: any) => {
const tags = record.properties?.tags || [];

View File

@ -128,8 +128,8 @@ export default function MLGroupModels() {
},
},
{
title: 'Tags',
key: 'tags',
title: 'Properties',
key: 'properties',
width: 200,
render: (_: any, record: any) => {
const tags = record.properties?.tags || [];