fix: show gpu driver version

This commit is contained in:
jialin
2026-04-09 21:27:50 +08:00
committed by jialin
parent ae3148a86f
commit b947e3a8b9
@@ -323,6 +323,20 @@ const useWorkerColumns = ({
)}
</Tag>
</AutoTooltip>
<Tooltip
title={
<span>
{intl.formatMessage({
id: 'benchmark.env.driverVersion'
})}
: {_.get(record, 'status.gpu_devices[0].driver_version')}
</span>
}
>
<Tag className="version-tag" variant="outlined">
{_.get(record, 'status.gpu_devices[0].driver_version', '')}
</Tag>
</Tooltip>
</div>
</div>
)