dtable-ui-component 6.0.110-sam.11 → 6.0.110-sam.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -234,6 +234,7 @@ class SelectOptionGroup extends _react.Component {
|
|
|
234
234
|
className: (0, _classnames.default)('select-search-text-clear input-icon-addon seatable-icon dtable-font dtable-icon-x'),
|
|
235
235
|
onClick: e => {
|
|
236
236
|
e.stopPropagation();
|
|
237
|
+
e.nativeEvent.stopImmediatePropagation();
|
|
237
238
|
props.clearValue();
|
|
238
239
|
}
|
|
239
240
|
});
|
|
@@ -274,7 +274,11 @@ class SelectOptionGroup extends _react.Component {
|
|
|
274
274
|
ClearIndicator: props => {
|
|
275
275
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("i", {
|
|
276
276
|
className: (0, _classnames.default)('select-search-text-clear input-icon-addon seatable-icon dtable-font dtable-icon-x'),
|
|
277
|
-
onClick:
|
|
277
|
+
onClick: e => {
|
|
278
|
+
e.stopPropagation();
|
|
279
|
+
e.nativeEvent.stopImmediatePropagation();
|
|
280
|
+
props.clearValue();
|
|
281
|
+
}
|
|
278
282
|
});
|
|
279
283
|
}
|
|
280
284
|
}
|