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
Does not cause existing connections to be removed - e.g. such from a previous call to recogito.setAnnotations(...).
The problem can be worked around using
for (const connection of this.connections.canvas.connections) {
connection.remove()
}
this.connections.canvas.connections = []
this.recogito.setAnnotations(webAnnotations)
But tbh, I would expect that recogito.setAnnotations() and recogito.clearAnnotations() would both propagate to the connections plugin and clean up there as well.
The text was updated successfully, but these errors were encountered:
With the connections plugin installed, calling
Does not cause existing connections to be removed - e.g. such from a previous call to
recogito.setAnnotations(...)
.The problem can be worked around using
But tbh, I would expect that
recogito.setAnnotations()
andrecogito.clearAnnotations()
would both propagate to the connections plugin and clean up there as well.The text was updated successfully, but these errors were encountered: