@rpg-engine/long-bow 0.2.85 → 0.2.86

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.
@@ -34321,7 +34321,8 @@ var ListMenu = function ListMenu(_ref) {
34321
34321
  }, options.map(function (params, index) {
34322
34322
  return React.createElement(ListElement$1, {
34323
34323
  key: (params == null ? void 0 : params.id) || index,
34324
- onClick: function onClick() {
34324
+ onClick: function onClick(e) {
34325
+ e.stopPropagation();
34325
34326
  onSelected(params == null ? void 0 : params.id);
34326
34327
  }
34327
34328
  }, (params == null ? void 0 : params.text) || 'No text');