From a007d21eff4e668616b2b15105a635f848d916ea Mon Sep 17 00:00:00 2001 From: Devdeep Ghosh Date: Mon, 11 Mar 2024 15:55:26 +0530 Subject: [PATCH] minor css change --- .../Consultations/BedActivityTimeline.tsx | 50 +++++++++---------- 1 file changed, 24 insertions(+), 26 deletions(-) diff --git a/src/Components/Facility/Consultations/BedActivityTimeline.tsx b/src/Components/Facility/Consultations/BedActivityTimeline.tsx index 5e7ed060809..a4bfa8f9665 100644 --- a/src/Components/Facility/Consultations/BedActivityTimeline.tsx +++ b/src/Components/Facility/Consultations/BedActivityTimeline.tsx @@ -133,32 +133,30 @@ const BedTimelineAsset = ({ return (
-
- {newlyLinkedAssets.length !== 0 && ( -
    Newly Linked Assets
- )} - {newlyLinkedAssets.map((asset) => ( -
  • - {asset.name} -
  • - ))} - {existingAssets.length !== 0 && ( -
      Existing Assets
    - )} - {existingAssets.map((asset) => ( -
  • - {asset.name} -
  • - ))} - {unlinkedAssets.length !== 0 && ( -
      Unlinked Assets
    - )} - {unlinkedAssets.map((asset) => ( -
  • - {asset.name} -
  • - ))} -
    + {newlyLinkedAssets.length !== 0 && ( + + )} + {newlyLinkedAssets.map((asset) => ( +
  • + {asset.name} +
  • + ))} + {existingAssets.length !== 0 && ( + + )} + {existingAssets.map((asset) => ( +
  • + {asset.name} +
  • + ))} + {unlinkedAssets.length !== 0 && ( + + )} + {unlinkedAssets.map((asset) => ( +
  • + {asset.name} +
  • + ))}
    ); };