dosubot[bot] commented on issue #32645: URL: https://github.com/apache/superset/issues/32645#issuecomment-2720610778
<!-- Greeting --> Hey @rdg0! I'm here to help you with any bugs, questions, or contributions you have in mind. Let's tackle this together! <!-- Answer --> The issue you're experiencing with pasting comma-separated values in a filter seems to be related to how Superset handles asynchronous data fetching for filter values that are not initially loaded due to the 1000 entry limit. Superset uses the `AsyncSelect` component to handle this, which supports lazy loading and pagination to fetch additional data as needed. However, it appears that when pasting a list with values outside the initial 1000 entries, the dynamic search might not be triggered correctly, leading to the entire input being ignored <sup>[[1]](https://github.com/apache/superset/blob/master/superset-frontend/src/components/Select/AsyncSelect.tsx)</sup>. This behavior might be due to the way the `AsyncSelect` component processes the pasted input, potentially not triggering the necessary fetch operations for values outside the initial dataset. It could be beneficial to investigate the `fetchPage` function within the `AsyncSelect` component to ensure it handles pasted inputs correctly and triggers dynamic searches for values not initially loaded. If this is a bug, it might require a code change to ensure that pasted values trigger the dynamic search functionality as expected. <!-- Dosu Comment Footer --> *To continue talking to [Dosu](https://dosu.dev), mention @dosu.* --- <sup>Help Dosu learn! Give it feedback: [Great Response](https://app.dosu.dev/response-feedback/cf959d97-0254-4752-b8cd-b82fd47c960f?feedback_type=great_response) | [Irrelevant Answer](https://app.dosu.dev/response-feedback/cf959d97-0254-4752-b8cd-b82fd47c960f?feedback_type=irrelevant_answer) | [Incorrect Sources](https://app.dosu.dev/response-feedback/cf959d97-0254-4752-b8cd-b82fd47c960f?feedback_type=incorrect_sources) | [Too Verbose](https://app.dosu.dev/response-feedback/cf959d97-0254-4752-b8cd-b82fd47c960f?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/cf959d97-0254-4752-b8cd-b82fd47c960f?feedback_type=hallucination) | [Bug Report](https://app.dosu.dev/response-feedback/cf959d97-0254-4752-b8cd-b82fd47c960f?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/cf959d97-0254-4752-b8cd-b82fd47c960f?feedback_type=other)</sup> -- 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]
