g026r
g026r
Could I ask for an update the godoc for `Index()` at the same time? It currently states the following, which implies that it operates across the unfiltered list: ``` //...
Workaround I've found for this at the moment is to find the global index of the item being removed, and then call `SetItems(slices.Delete(Items(), GlobalIndex, GlobalIndex+1))`, which triggers a filter update...
@prithvijj Something like that, yeah. Probably the simplest way to describe it is that it removes the item at that index in both the filtered & unfiltered items. But since...