Skip to content

Commit e254e23

Browse files
committed
AliasInput: refer to "value" instead of "displayValue"
1 parent dc05c2f commit e254e23

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/components/src/internal/components/forms/input/AliasInput.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export const AliasSelectInput: FC<Props> = memo(props => {
3636
?.map(a => {
3737
if (!a) return a;
3838
if (typeof a === 'string') return a;
39-
if (typeof a === 'object') return a.displayValue;
39+
if (typeof a === 'object') return a.value;
4040
return undefined;
4141
})
4242
.filter(a => !!a);

0 commit comments

Comments
 (0)