Skip to content

Commit

Permalink
refactor: update table layout in 4thStepDeployed component to 100%
Browse files Browse the repository at this point in the history
  • Loading branch information
mohandast52 committed Aug 26, 2024
1 parent 2c1437c commit ef8e0db
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export const Deployed = ({

return (
<div className="step-4-deployed" data-testid="step-deployed">
<Space direction="vertical" size={10}>
<Space direction="vertical" size={10} className="full-width">
{isShowAgentInstanceVisible && (
<Table
dataSource={data}
Expand All @@ -84,12 +84,14 @@ export const Deployed = ({
dataIndex: 'agentInstance',
key: 'agentInstance',
render: (text) => <AddressLink text={text} {...addressLinkProps} />,
width: '50%',
},
{
title: 'Operators',
dataIndex: 'operatorAddress',
key: 'operatorAddress',
render: (text) => <AddressLink text={text} {...addressLinkProps} />,
width: '50%',
},
]}
/>
Expand Down

0 comments on commit ef8e0db

Please sign in to comment.