From 7f7d2c74b9d089536b148a9dbf097fb10af3b9dc Mon Sep 17 00:00:00 2001 From: Guido Modarelli Date: Wed, 11 Dec 2024 15:00:46 -0300 Subject: [PATCH] refactor(agent-info): add minWidth style to registration and last keep-alive fields for better layout consistency --- .../public/components/common/welcome/agent-info/agent-info.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/main/public/components/common/welcome/agent-info/agent-info.tsx b/plugins/main/public/components/common/welcome/agent-info/agent-info.tsx index 83d237fbe0..c72055e567 100644 --- a/plugins/main/public/components/common/welcome/agent-info/agent-info.tsx +++ b/plugins/main/public/components/common/welcome/agent-info/agent-info.tsx @@ -136,11 +136,13 @@ export class AgentInfo extends Component { key: 'registration-date', value: formatUIDate(agent.dateAdd), label: 'Registration date', + style: { minWidth: 165 }, }, { key: 'last-keep-alive', value: formatUIDate(agent.lastKeepAlive), label: 'Last keep alive', + style: { minWidth: 165 }, }, ]; }