You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 10, 2025. It is now read-only.
I am using receivedData to populate the dropdown.
This receivedData is used in two API calls:
First when page is loaded, the dropdown will be populated.
Second, in the event handler @selectionChanged when some items are selected, it will make another API request and receive the new values in receivedData variable i.e. the same variable to populate the dropdown again.
Somehow, this is causing the event to trigger continuously making API requests.
When I commented the this.receivedData = res.data; line from FilterBySelectedItem(), then the continuous triggering stopped, means receivedData is not changed this time hence not causing the event to trigger.