Explorer reports limited to 5 rows no matter how much data you have :(

I’m working in the Data Explorer today for the first time in a while. What I’m noticing is that I have to scroll the results table, which is pinned to stay within the page height, no matter how much data I have. :frowning: :cry:

2 Likes

Oh, this is way, way worse than I thought. Here’s what my target audience sees outside the edit context:

I’ve added the bug tag

1 Like

yea this can be changed with a bit of css in a theme component:

.query-results .query-results-table-wrapper {
    max-height: fit-content;
}
2 Likes

Thanks @Lilly!

I really appreciate that bandaid. Before I apply it, though Ima wait a day or so to see if maybe Discourse staff will fix the underlying problem. :folded_hands:

1 Like

yea i didn’t realize the space under the report was such a thing when i first posted that (i actually thought it might be your theme at first). then i used my ipad and rotated it and saw it and realized it was an actual bug.

edit: i would make a PR for this, but i don’t know how the team would want to handle the output - fit to screen, hardcode max-height, or fit to query result length.

2 Likes