Fixed font size and added name to waitlist tab

This commit was merged in pull request #638.
This commit is contained in:
2024-03-11 20:31:11 +01:00
parent e6684c56fd
commit 60cc6f375e
2 changed files with 7 additions and 5 deletions
@@ -3,6 +3,7 @@ import SuggestTask from "../../FamilyPopup/SuggestTask";
import { PaginatedList, handlePagingFunc } from "../../Pagination";
import LoadingSpinner from "../../Spinners/LoadingSpinner";
import AssignTaskPopout from "../FamilyPopout/AssignTaskPopout";
import Icons from "../../Helpers/Icons";
const FamilyNewWaitlist = ({
familyData,
@@ -97,17 +98,18 @@ const FamilyNewWaitlist = ({
{addedDate}
</p>
<p className="text-xs py-1.5 w-[70px] cursor-default tracking-wide rounded-full bg-gold text-white flex justify-center items-center">
{value.status_text}
{value.firstname}
</p>
</div>
</div>
</td>
<td className="text-right py-4 px-2">
<td className="text-right py-4 px-2 flex justify-end">
<button
onClick={() => openPopUp(value)}
className="w-20 h-11 flex justify-center items-center btn-gradient text-base rounded-full text-white"
>
View
{/* View */}
<Icons name="right-arrow" />
</button>
</td>
</tr>