diff --git a/Project.toml b/Project.toml index 41b86ca..b77c5db 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "TableView" uuid = "40c74d1a-b44c-5b06-a7c1-6cbea58ea978" -version = "0.7.0" +version = "0.7.1" [deps] Dates = "ade2ca70-3891-5945-98fb-dc099432e06a" diff --git a/src/TableView.jl b/src/TableView.jl index 757ee22..881dd19 100644 --- a/src/TableView.jl +++ b/src/TableView.jl @@ -274,6 +274,9 @@ function _showtable_async!(w, schema, types, rows, tablelength, id, options, opt onimport(w, handler) end +# By default all objects must use repr or sprint +_is_javascript_safe(x::Real) = false + function _is_javascript_safe(x::Integer) min_safe_int = -(Int64(2)^53-1) max_safe_int = Int64(2)^53-1