mirror of
https://github.com/YspCoder/clawgo.git
synced 2026-05-04 02:14:55 +08:00
Release v0.1.0 agent topology and runtime refresh
This commit is contained in:
@@ -113,7 +113,7 @@ const RecursiveConfig: React.FC<RecursiveConfigProps> = ({ data, labels, path =
|
||||
if (typeof data !== 'object' || data === null) return null;
|
||||
|
||||
return (
|
||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-x-12 gap-y-10">
|
||||
<div className="grid grid-cols-1 md:grid-cols-2 xl:grid-cols-3 gap-x-10 gap-y-8">
|
||||
{Object.entries(data).map(([key, value]) => {
|
||||
const currentPath = path ? `${path}.${key}` : key;
|
||||
const label = labels[key] || key.replace(/_/g, ' ');
|
||||
|
||||
Reference in New Issue
Block a user