Skip to content

Commit

Permalink
Merge pull request #213 from Infosys/injiweb-1143
Browse files Browse the repository at this point in the history
[INJIWEB-1143]: Fixed Dropdown on share visibility
  • Loading branch information
vijay151096 authored Dec 2, 2024
2 parents 3ddb770 + c151dab commit 62504ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions inji-web/src/components/DataShare/DataShareContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ export const DataShareContent:React.FC<DSContentProps> = (props) => {
</label>
</div>
</div>
<div className="relative flex mb-4" onClick={()=>setTimesDropDown(times => !times)}>
<div className="relative flex mb-4">
<div className={"w-1/3"}></div>
<div className={"w-2/3 py-4 px-4 rounded-lg border-2 border-iw-borderLight flex flex-row items-center"}>
<div className={"w-2/3 py-4 px-4 rounded-lg border-2 border-iw-borderLight flex flex-row items-center"} onClick={()=>setTimesDropDown(times => !times)}>
<label className={"w-full h-full"} data-testid={"DataShareContent-Selected-Validity-Times"}>{getExpiryDisplayName(vcStorageExpiryLimitInTimes)}</label>
<MdOutlineKeyboardArrowDown size={30} color={'var(--iw-color-arrowDown)'} />
</div>
Expand Down

0 comments on commit 62504ee

Please sign in to comment.