TableView.jl icon indicating copy to clipboard operation
TableView.jl copied to clipboard

Observable notify causing duplicated tables

Open jakkos-net opened this issue 3 years ago • 0 comments

using TableView, Interact, Blink, DataFrames, Observables

t = showtable(DataFrame(:A => [1,2]))
o = Observable(OrderedDict(:t => t))

body!(Window(), tabulator(o))

notify(o)

causes 2 tables to appear instead of one

image

Calling notify(o) multiple times at the end of the file causes multiple duplicates. Calling notify(o) after a delay removes all the duplicates.

jakkos-net avatar Feb 15 '22 17:02 jakkos-net