dosubot[bot] commented on issue #36124: URL: https://github.com/apache/superset/issues/36124#issuecomment-3535157658
<!-- Answer --> This is a known edge case caused by how the dataset dropdown fetches and displays options: it loads only the first 100 datasets, sorted alphabetically by table name, from the backend API. If your new dataset's name puts it late in the alphabet, it won't show up unless you search for it directly or rename it to appear earlier in the sort order (like "a_name")—which is why renaming works. There’s no frontend filtering or exclusion; it’s just server-side pagination and sorting that limits what you see in the dropdown. You can work around this by typing part of the dataset name in the search box to trigger a backend search, or by renaming the dataset so it appears in the first page of results. More details on the dropdown logic are in the [DatasetSelect component](https://github.com/apache/superset/blob/829e4d92d91ceae4b43b1ed3b063ffe45377799c/superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx#L39-L96). <!-- Dosu Comment Footer --> *To reply, just mention [@dosu](https://go.dosu.dev/dosubot).* --- <sup>How did I do? [Good](https://app.dosu.dev/response-feedback/1140422f-95d6-48b3-adcf-805d21a7d863?feedback_type=great_response) | [Irrelevant](https://app.dosu.dev/response-feedback/1140422f-95d6-48b3-adcf-805d21a7d863?feedback_type=irrelevant_answer) | [Incorrect](https://app.dosu.dev/response-feedback/1140422f-95d6-48b3-adcf-805d21a7d863?feedback_type=incorrect_sources) | [Verbose](https://app.dosu.dev/response-feedback/1140422f-95d6-48b3-adcf-805d21a7d863?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/1140422f-95d6-48b3-adcf-805d21a7d863?feedback_type=hallucination) | [Report 🐛](https://app.dosu.dev/response-feedback/1140422f-95d6-48b3-adcf-805d21a7d863?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/1140422f-95d6-48b3-adcf-805d21a7d863?feedback_type=other)</sup> [](https://app.dosu.dev/a28d3c7e-a9d3-459e-9fb6-3a6f9ff4f357/ask?utm_source=githu b) [](https://go.dosu.dev/discord-bot) [](https://twitter.com/intent/tweet?text=%40dosu_ai%20helped%20me%20solve%20this%20issue!&url=https%3A//github.com/apache/superset/issues/36124) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
