app-devtools 0.16.0 → 0.17.0

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.
Files changed (2) hide show
  1. package/dist/main.js +4 -1
  2. package/package.json +1 -1
package/dist/main.js CHANGED
@@ -2002,13 +2002,16 @@ const ApiExplorerMenu = () => {
2002
2002
  ...value
2003
2003
  });
2004
2004
  }
2005
- return searchItems({
2005
+ const searchedItems = searchItems({
2006
2006
  items: filtered,
2007
2007
  searchQuery: callSearch.trim(),
2008
2008
  getStringToMatch(item) {
2009
2009
  return item.name;
2010
2010
  }
2011
2011
  });
2012
+ return sortBy(searchedItems, item => {
2013
+ return item.requests.at(-1)?.startTime || 0;
2014
+ });
2012
2015
  }, 'id');
2013
2016
  const _currentCallId = createMemo(() => uiStore.selectedCall);
2014
2017
  return (() => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "app-devtools",
3
- "version": "0.16.0",
3
+ "version": "0.17.0",
4
4
  "description": "",
5
5
  "packageManager": "pnpm@6.29.1",
6
6
  "license": "MIT",