There's currently no way to display more products through the user interface but there's a quick little hack you can use in the meantime!
If the current URL currently looks like:
/inventory
Then to show 25 products per page, you will need to change the URL to:
/inventory?per=25
Here's another example. If your current URL currently looks like:
/inventory?page=2&per=12
Then to show 50 products per page, you will need to change the URL to:
/inventory?page=2&per=50