See PHI1383.
When a query panel on a dashboard has a configured limit and executes a bucketed query, like the "Active Revisions" query in Differential, the result can be counterintuitive.
PHI1383 was reported against an old version of Phabricator and changes in D20333 and connected to T13272 have generally improved behavior here, but applying a limit to these queries does not really result in intuitive behavior, since the limit means a sort of arbitrary set of revisions are shown. For example, a limit of 10 does not mean "show only the first 10 revisions", and because the bucketing/ordering is dependent on application-level behavior this theoretical limit can not be applied in the database anyway. It's somewhat unlikely that this limit is ever relevant/desirable anyway.
Here's what the panel looks like with a limit of 2:
I think the cleanest fix here is likely to just ignore the limit on bucketing queries for now (which is what we do inside applications, so it makes behavior consistent if nothing else), and then maybe revisit this somewhere down the line.