From cd18e683bf3a939adf6043f62a077a85af0394b7 Mon Sep 17 00:00:00 2001 From: Kendall Garner <17521368+kgarner7@users.noreply.github.com> Date: Sun, 29 Jun 2025 22:34:39 -0700 Subject: [PATCH] yesnofilter null when not provided --- src/shared/components/yes-no-select/yes-no-select.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/components/yes-no-select/yes-no-select.tsx b/src/shared/components/yes-no-select/yes-no-select.tsx index 0609ec65..07c693ec 100644 --- a/src/shared/components/yes-no-select/yes-no-select.tsx +++ b/src/shared/components/yes-no-select/yes-no-select.tsx @@ -26,7 +26,7 @@ export const YesNoSelect = ({ onChange, value, ...props }: YesNoSelectProps) => onChange={(e) => { onChange(e ? e === 'true' : undefined); }} - value={value !== undefined ? value.toString() : undefined} + value={value !== undefined ? value.toString() : null} {...props} /> );