From 45838c9d03b8739b00540c95f0c40d2207cddd9e Mon Sep 17 00:00:00 2001 From: Arnei Date: Fri, 9 Jan 2026 12:26:14 +0100 Subject: [PATCH] Fix series dropdown not displaying "No options selected" In the metadata of the event details, if a series was already selected and then "No option selected" would be selected, it would still display the previously selected series. It would technically still work, it was just the display that was wrong. This fixes that. --- src/components/shared/wizard/RenderField.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/shared/wizard/RenderField.tsx b/src/components/shared/wizard/RenderField.tsx index 835198fc20..3e031d86af 100644 --- a/src/components/shared/wizard/RenderField.tsx +++ b/src/components/shared/wizard/RenderField.tsx @@ -354,6 +354,8 @@ const EditableSingleSelectSeries = ({ if (transformedData.length > 0) { setLabel(transformedData[0].label); } + } else { + setLabel(""); } }; fetchLabelById();