From 582d7c634eea7f5f3b93f5d9fd7a3fe037460c61 Mon Sep 17 00:00:00 2001 From: nowgnuesLee <192685612+nowgnuesLee@users.noreply.github.com> Date: Fri, 12 Dec 2025 07:27:44 +0000 Subject: [PATCH] fix(FR-1780): Align the refresh button of the dashboard items (#4805) resolves #4806 (FR-1780) This PR align the refresh button of the dashboard items. **Checklist:** (if applicable) - [ ] Documentation - [ ] Minium required manager version - [ ] Specific setting for review (eg., KB link, endpoint or how to setup) - [ ] Minimum requirements to check during review - [ ] Test case(s) to demonstrate the difference of before/after --- react/src/components/ActiveAgents.tsx | 3 +-- react/src/components/RecentlyCreatedSession.tsx | 3 +-- react/src/components/SessionCountDashboardItem.tsx | 3 +-- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/react/src/components/ActiveAgents.tsx b/react/src/components/ActiveAgents.tsx index d75b617aa0..eaf8c2d2c7 100644 --- a/react/src/components/ActiveAgents.tsx +++ b/react/src/components/ActiveAgents.tsx @@ -24,8 +24,7 @@ const ActiveAgents: React.FC = ({ direction="column" align="stretch" style={{ - paddingLeft: token.paddingXL, - paddingRight: token.paddingXL, + paddingInline: token.paddingXL, height: '100%', }} > diff --git a/react/src/components/RecentlyCreatedSession.tsx b/react/src/components/RecentlyCreatedSession.tsx index e9f35a89dd..7b18889885 100644 --- a/react/src/components/RecentlyCreatedSession.tsx +++ b/react/src/components/RecentlyCreatedSession.tsx @@ -63,8 +63,7 @@ const RecentlyCreatedSession: React.FC = ({ direction="column" align="stretch" style={{ - paddingLeft: token.paddingXL, - paddingRight: token.paddingXL, + paddingInline: token.paddingXL, height: '100%', }} > diff --git a/react/src/components/SessionCountDashboardItem.tsx b/react/src/components/SessionCountDashboardItem.tsx index 3e85e48c96..bc72e2a997 100644 --- a/react/src/components/SessionCountDashboardItem.tsx +++ b/react/src/components/SessionCountDashboardItem.tsx @@ -80,8 +80,7 @@ const SessionCountDashboardItem: React.FC = ({ direction="column" align="stretch" style={{ - paddingLeft: token.paddingXL, - paddingRight: token.padding, + paddingInline: token.paddingXL, ...props.style, }} {..._.omit(props, ['style'])}