Fixed font size and added name to waitlist tab
This commit was merged in pull request #638.
This commit is contained in:
@@ -196,11 +196,11 @@ const AssignTaskPopout = React.memo(
|
|||||||
<h1 className="text-26 font-bold text-dark-gray dark:text-white tracking-wide flex items-center">
|
<h1 className="text-26 font-bold text-dark-gray dark:text-white tracking-wide flex items-center">
|
||||||
Assign task to{" "}
|
Assign task to{" "}
|
||||||
{pathname === "/acc-family/activities" ? (
|
{pathname === "/acc-family/activities" ? (
|
||||||
<div className="w-[200px] h-[30px] ml-2">
|
<div className="w-[270px] h-[40px] ml-2">
|
||||||
<select
|
<select
|
||||||
name=""
|
name=""
|
||||||
id=""
|
id=""
|
||||||
className="text-black/70 bg-transparent px-2 transition-all cursor-pointer focus:outline-none border border-gray-200 rounded-lg w-full h-full text-[1.2rem]"
|
className="text-black/70 bg-transparent px-2 transition-all cursor-pointer focus:outline-none border border-gray-200 rounded-lg w-full h-full py-1"
|
||||||
onChange={handleFamChange}
|
onChange={handleFamChange}
|
||||||
value={selectedFamilyUid}
|
value={selectedFamilyUid}
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ import SuggestTask from "../../FamilyPopup/SuggestTask";
|
|||||||
import { PaginatedList, handlePagingFunc } from "../../Pagination";
|
import { PaginatedList, handlePagingFunc } from "../../Pagination";
|
||||||
import LoadingSpinner from "../../Spinners/LoadingSpinner";
|
import LoadingSpinner from "../../Spinners/LoadingSpinner";
|
||||||
import AssignTaskPopout from "../FamilyPopout/AssignTaskPopout";
|
import AssignTaskPopout from "../FamilyPopout/AssignTaskPopout";
|
||||||
|
import Icons from "../../Helpers/Icons";
|
||||||
|
|
||||||
const FamilyNewWaitlist = ({
|
const FamilyNewWaitlist = ({
|
||||||
familyData,
|
familyData,
|
||||||
@@ -97,17 +98,18 @@ const FamilyNewWaitlist = ({
|
|||||||
{addedDate}
|
{addedDate}
|
||||||
</p>
|
</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">
|
<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>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td className="text-right py-4 px-2">
|
<td className="text-right py-4 px-2 flex justify-end">
|
||||||
<button
|
<button
|
||||||
onClick={() => openPopUp(value)}
|
onClick={() => openPopUp(value)}
|
||||||
className="w-20 h-11 flex justify-center items-center btn-gradient text-base rounded-full text-white"
|
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>
|
</button>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|||||||
Reference in New Issue
Block a user