Using julia version 1.5.3
When running the demo code on the TimeSeries.jl documentation:
using Dates, TimeSeries
dates = Date(2018, 1, 1):Day(1):Date(2018, 12, 31)
TimeArray(dates, rand(length(dates)))
I receive an error message:
```Failed to show value:
MethodError: no method matching getindex(::Tables.RowIterator{NamedTuple{(:timestamp, :A),Tuple{Array{Dates.Date,1},Array{Float64,1}}}}, ::Int64)
table_data(::TimeSeries.TimeArray{Float64,1,Dates.Date,Array{Float64,1}}, ::IOContext{Base.GenericIOBuffer{Array{UInt8,1}}})@PlutoRunner.jl:611
show_richest(::IOContext{Base.GenericIOBuffer{Array{UInt8,1}}}, ::Any)@PlutoRunner.jl:378
formatted_result_of(::Base.UUID, ::Bool, ::Nothing)@PlutoRunner.jl:76
top-level scope@none:1
```
I verified that the same code runs successfully in the julia command line as well as in the Jupyter Notebook.
Probably the same issue as #708
Most helpful comment
Fixed in https://github.com/fonsp/Pluto.jl/pull/726