Skip to content

Commit

Permalink
fix: orgsidebar progress
Browse files Browse the repository at this point in the history
  • Loading branch information
kanikabansal-juspay committed Jan 24, 2025
1 parent 66f3f7b commit d22c8e4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/screens/Sidebar/OrgSidebar.res
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ module OrgTile = {
}
let hoverLable1 = currentlyEditingId->Option.isSome ? `` : `group/parent`
let hoverInput2 =
currentlyEditingId->Option.isSome ? `` : `opacity-0 group-hover/parent:opacity-100`
currentlyEditingId->Option.isSome ? `` : `invisible group-hover/parent:visible `
let wrapperCss = switch (currentlyEditingId, isActive) {
| (Some(_), true) =>
`absolute left-full top-0 z-50 ${backgroundColor.sidebarSecondary} p-2 rounded-md`
Expand All @@ -51,9 +51,9 @@ module OrgTile = {
index
labelText={orgName}
subText={"organization"}
customStyle={` p-3 ${backgroundColor.sidebarSecondary} min-w-64 transition-all duration-300 ease-in-out `}
customStyle={` p-3 ${backgroundColor.sidebarSecondary} min-w-64 ${hoverInput2}`}
onHoverEdit=false
customInputStyle={`${backgroundColor.sidebarSecondary} text-sm `}
customInputStyle={`${backgroundColor.sidebarSecondary} text-sm ${hoverInput2} `}
customIconComponent={<OMPSwitchHelper.OMPCopyTextCustomComp
displayValue=" " copyValue=Some({orgID})
/>}
Expand Down

0 comments on commit d22c8e4

Please sign in to comment.