bug: enable creating a new card with mulitple labels

This commit is contained in:
Henry
2024-08-12 21:29:20 +01:00
parent 250d23d2ae
commit ff5802b953
2 changed files with 2 additions and 2 deletions

View File

@@ -56,7 +56,7 @@ const Popup: React.FC = () => {
onClick={() => {
hidePopup();
}}
className="dark:hover:bg-dark-4000 mx-1 inline-flex h-fit items-center rounded-md p-1 px-1 text-sm font-semibold text-dark-50 hover:bg-light-100"
className="mx-1 inline-flex h-fit items-center rounded-md p-1 px-1 text-sm font-semibold text-dark-50 hover:bg-light-100 dark:hover:bg-dark-400"
>
<span className="sr-only">Close</span>
<HiXMark

View File

@@ -41,7 +41,7 @@ export const getAllByPublicIds = async (
const { data } = await db
.from("label")
.select(`id`)
.eq("publicId", labelPublicIds);
.in("publicId", labelPublicIds);
return data;
};