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
When I try to set custom filter function using example on the web site, inspection of element shows that function in use is still the one from paper-chip-input
When I try to set custom filter function using example on the web site, inspection of element shows that function in use is still the one from paper-chip-input
<script> let weekdays = document.querySelector("#weekdays") weekdays.filter = (data, value) => { return data.filter((item) => item[weekdays.displayProperty].toLowerCase().includes(value.toLowerCase())) } </script>
The text was updated successfully, but these errors were encountered: