I needed to limit the number of parameters displayed because when you have devices with thousands of parameters it can slow the page rendering to a crawl just to display that one component.
One thing to note about this change is that which params get displayed is not arbitrary. It starts at the top of the tree and traverses the data model level by level until it counts at least 100 params, then all params up to that level are displayed. This means that if you’re scanning what params are available under a certain parent param you won’t have to wonder if some of them may be hidden from view. With this in mind, would you still want to increase or remove the limit?