started favorites compare

This commit is contained in:
2025-05-15 19:03:24 +05:00
parent 224c6499cf
commit 501ed130be
9 changed files with 400 additions and 141 deletions
+4 -1
View File
@@ -67,7 +67,10 @@ function ProjectSelect<T extends boolean = false>({
))}
</div>
<Select
options={["All", ...projects.map((project) => project.title)]}
options={[
...(withAll ? ["All"] : []),
...projects.map((project) => project.title),
]}
onSelect={(option) =>
setSelectedProject(
projects.find((project) => project.title === option) ||