@bigbinary/neeto-editor 1.47.72 → 1.47.73

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.
@@ -15162,9 +15162,7 @@ var SlashCommands = {
15162
15162
  },
15163
15163
  items: function items(_ref3) {
15164
15164
  var query = _ref3.query;
15165
- if (!query) {
15166
- return commandItems.slice(0, 10);
15167
- }
15165
+ if (!query) return commandItems;
15168
15166
  var filteredItems = fuzzySearch(commandItems, query);
15169
15167
  return ramda.isEmpty(filteredItems) ? [NO_RESULT_MENU_ITEM] : filteredItems;
15170
15168
  },