My AngularJS application has multiple routes, and on one of the pages, I am utilizing Angular-UI-Select.
When trying to remove an option in the multi-select box by clicking on the cross button, it mistakenly redirects to the app's home page instead of removing the selected option.
I suspect that this issue is occurring because the URL already contains a #
at the app home, and the cross button is also linking to #
, causing the browser to redirect to the home page.
I have checked out the interactive demo, which functions correctly but does not include an existing #
in the URL. Is there a workaround available to resolve this issue?