Skip to content

Commit 66fa0d3

Browse files
committed
Merge branch 'master' of https://github.com/plotly/Dash.jl
2 parents 135bff5 + 83a9e6c commit 66fa0d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Julia version >= 1.2 is required.
44
It also works in 1.1 now, but I do not plan testing and support for versions under 1.2
55

66
```julia
7-
import Pkg; Pkg.add("Dash")
7+
import Pkg; Pkg.add(Pkg.PackageSpec(url = "https://github.com/plotly/Dash.jl.git"))
88
```
99

1010
## Usage
@@ -142,4 +142,4 @@ end
142142
Be careful - in Dash.jl states came first in arguments list
143143

144144
### json:
145-
I use JSON2 for json serialization/deserialization, so in callbacks all json objects are NamedTuples not Dicts. In component props you can use both Dicts and NamedTuples for json objects. But be careful with single property objects: `layout = (title = "Test graph")` is not interpreted as NamedTuple by Julia - you need add comma at the end `layout = (title = "Test graph",)`
145+
I use JSON2 for json serialization/deserialization, so in callbacks all json objects are NamedTuples not Dicts. In component props you can use both Dicts and NamedTuples for json objects. But be careful with single property objects: `layout = (title = "Test graph")` is not interpreted as NamedTuple by Julia - you need add comma at the end `layout = (title = "Test graph",)`

0 commit comments

Comments
 (0)