Skip to content

Commit db24b8b

Browse files
committed
fix(search): fixed bad filter configs
1 parent 5f6d50b commit db24b8b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/shared/presets/search-filter-configs.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ export const SINGLE_SELECT_OPTIONS = {
1010
projects: {
1111
hasHacks: [
1212
{ label: "Has been hacked", value: true },
13-
{ label: "Has not been hacked", value: true },
13+
{ label: "Has not been hacked", value: false },
1414
],
1515
hasAudits: [
1616
{ label: "Has Audits", value: true },
17-
{ label: "Has No Audits", value: true },
17+
{ label: "Has No Audits", value: false },
1818
],
1919
hasToken: [
2020
{ label: "Has Token", value: true },
21-
{ label: "Has No Token", value: true },
21+
{ label: "Has No Token", value: false },
2222
],
2323
order: [
2424
{ label: "Ascending", value: "asc" },
@@ -38,11 +38,11 @@ export const SINGLE_SELECT_OPTIONS = {
3838
organizations: {
3939
hasProjects: [
4040
{ label: "Has projects", value: true },
41-
{ label: "Has no projects", value: true },
41+
{ label: "Has no projects", value: false },
4242
],
4343
hasJobs: [
4444
{ label: "Has jobs", value: true },
45-
{ label: "Has no jobs", value: true },
45+
{ label: "Has no jobs", value: false },
4646
],
4747
order: [
4848
{ label: "Ascending", value: "asc" },

0 commit comments

Comments
 (0)