bugs fixed

This commit is contained in:
daniel31x13
2023-10-26 18:49:46 -04:00
parent 966136dab6
commit ea86737835
7 changed files with 88 additions and 38 deletions
+6 -2
View File
@@ -1,12 +1,16 @@
import React, { SetStateAction } from "react";
import ClickAwayHandler from "./ClickAwayHandler";
import Checkbox from "./Checkbox";
import { LinkSearchFilter } from "@/types/global";
type Props = {
setFilterDropdown: (value: SetStateAction<boolean>) => void;
setSearchFilter: Function;
searchFilter: LinkSearchFilter;
searchFilter: {
name: boolean;
url: boolean;
description: boolean;
tags: boolean;
};
};
export default function FilterSearchDropdown({
+2
View File
@@ -46,6 +46,8 @@ export default function AddOrEditLink({
url: "",
description: "",
tags: [],
screenshotPath: "",
pdfPath: "",
collection: {
name: "",
ownerId: data?.user.id as number,