diff --git a/frontend/src/component/feature/StrategyTypes/FlexibleStrategy/StickinessSelect/StickinessSelect.tsx b/frontend/src/component/feature/StrategyTypes/FlexibleStrategy/StickinessSelect/StickinessSelect.tsx index 7eea39686e..a5e760dfa0 100644 --- a/frontend/src/component/feature/StrategyTypes/FlexibleStrategy/StickinessSelect/StickinessSelect.tsx +++ b/frontend/src/component/feature/StrategyTypes/FlexibleStrategy/StickinessSelect/StickinessSelect.tsx @@ -43,6 +43,11 @@ export const StickinessSelect = ({ options.push({ key: 'random', label: 'random' }); } + // Add existing value to the options + if (value && !options.find(option => option.key === value)) { + options.push({ key: value, label: value }); + } + return options; };