Feature/ln 1358 ce people page filters ui
2 unresolved threads
2 unresolved threads
Merge request reports
Activity
Filter activity
requested review from @darlington
assigned to @njuma
1 import { useTranslation } from 'react-i18next'; 2 3 interface FundingStatusToggleProps { 4 checked: boolean; 5 onChange: () => void; 6 } 7 8 const FundingStatusToggle: React.FC<FundingStatusToggleProps> = ({ checked, onChange }) => { 9 const { t } = useTranslation(); 10 11 return ( 12 <div className="relative flex flex-col items-center"> 13 {/* Left Vertical Border */} 14 <div className="absolute left-0 top-0 h-full w-px bg-gray-300"></div> changed this line in version 2 of the diff
10 11 return ( 12 <div className="relative flex flex-col items-center"> 13 {/* Left Vertical Border */} 14 <div className="absolute left-0 top-0 h-full w-px bg-gray-300"></div> 15 16 <span className="text-sm font-medium mb-2">{t('people.fundingStatus')}</span> 17 18 <label className="relative inline-flex cursor-pointer"> 19 <input 20 type="checkbox" 21 checked={checked} 22 onChange={onChange} 23 className="sr-only peer" 24 /> 25 <div className="w-12 h-6 bg-gray-300 rounded-full peer-checked:bg-primary transition-colors duration-300"> changed this line in version 2 of the diff
added 13 commits
-
059bd1c1...e56b7217 - 12 commits from branch
dev
- 4a19b28f - Merge branch 'dev' of...
-
059bd1c1...e56b7217 - 12 commits from branch
mentioned in commit 1e2bc59b
This MR is included in version 1.0.0 The release is available on GitLab release.
Your semantic-release bot
Please register or sign in to reply