added status column #761

Merged
ameye merged 1 commits from relative-list-update into master 2024-07-22 15:15:08 +00:00
@@ -32,6 +32,7 @@ export default function RelativeTable({relativeList, familyList}) {
<tr>
<th className='py-4 px-2'></th>
<th className='py-4 px-2'></th>
<th className='py-4 px-2 text-center'>Status</th>
<th className='py-4 px-2 text-center'>Kids</th>
<th className='py-4 px-2'></th>
</tr>
@@ -58,6 +59,9 @@ export default function RelativeTable({relativeList, familyList}) {
<td className='py-4 px-2 text-center'>
{value.status && value.status}
</td>
<td className='py-4 px-2 text-center'>
{value.kid_count && value.kid_count}
</td>
<td className='py-4 px-2 flex items-center justify-end'>
<button
onClick={() => setRelativePopout({show:true, data:{relativeSelected:value}})}