We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f65a64a commit 500bbd8Copy full SHA for 500bbd8
packages/gephi-lite/src/components/data/Attribute.tsx
@@ -244,9 +244,15 @@ export const AttributeEditors: {
244
(props: OptionProps<BaseOption, true>) => {
245
const Option = components.Option<BaseOption, true, GroupBase<BaseOption>>;
246
return (
247
- <Option {...props}>
248
- <RenderKeywords value={[props.data.value]} separator={field.separator} />
249
- </Option>
+ <div
+ onClick={(e) => {
+ e.stopPropagation();
250
+ }}
251
+ >
252
+ <Option {...props}>
253
+ <RenderKeywords value={[props.data.value]} separator={field.separator} />
254
+ </Option>
255
+ </div>
256
);
257
},
258
[field.separator],
0 commit comments