@@ -66,11 +66,11 @@ const CompanyTabList = ({ initData, customerId, client, software, customer }) =>
dataIndex: 'clientName',
width: '30%',
render: (clientName, record) => (
- <span
- onClick={() => showDrawer(record.id)}
- className="text-primary cursor-pointer hover:text-[#967bbd] line-clamp-1">
- {clientName}
- </span>
+ <div className="text-primary hover:text-[#967bbd] line-clamp-1">
+ <span onClick={() => showDrawer(record.id)} className="cursor-pointer ">
+ {clientName}
+ </span>
+ </div>
)
},
{
@@ -109,7 +109,7 @@ const Dashboard = () => {
disabled: false,
businessChar
})
- }, 1000)
+ }, 300)
}