Merge pull request 'Address field label is breaking into multiple lines in Employee Profile tab' (#382) from Kartik_Bug#1096 into Issues_Sep_1W

Reviewed-on: #382
Merged
This commit is contained in:
pramod.mahajan 2025-09-10 04:42:12 +00:00
commit 1ff1bc9269

View File

@ -142,13 +142,14 @@ const EmpOverview = ({ profile }) => {
</div>
{/* Address */}
<div className="d-flex align-items-start">
<span className="d-flex">
<div className="d-flex align-items-start">
<span className="d-flex align-items-center">
<i className="bx bx-map bx-xs me-2 mt-1"></i>
<span>Address</span>
<span className="text-nowrap">Address</span>
</span>
<span style={{ marginLeft: "86px" }}>:</span>
<span className="ms-5">
<span className="ms-5" style={{ marginRight: "75px" }}>
{profile?.currentAddress || <em>NA</em>}
</span>
</div>