Skip to content

Commit

Permalink
remove debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
hhaensel committed Apr 27, 2021
1 parent ad843a5 commit 5682d7a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Stipple"
uuid = "4acbeb90-81a0-11ea-1966-bdaff8155998"
authors = ["Adrian <[email protected]>"]
version = "0.11.1"
version = "0.11.2"

[deps]
FilePathsBase = "48062228-2e41-5def-b9a4-89aafe57970f"
Expand Down
1 change: 0 additions & 1 deletion src/Stipple.jl
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,6 @@ function init(model::M, ui::Union{String,Vector} = ""; vue_app_name::String = St
hasfield(M, field) || return "OK"
valtype = Dict(zip(fieldnames(M), M.types))[field]
val = valtype <: Reactive ? getfield(model, field) : Ref{valtype}(getfield(model, field))
@show val
# reject non-public types
if val isa Reactive
val.r_mode == PUBLIC || return "OK"
Expand Down

2 comments on commit 5682d7a

@hhaensel
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/35452

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.11.2 -m "<description of version>" 5682d7ae694c0c09d11d0a87cfe8dc637f6bf426
git push origin v0.11.2

Please sign in to comment.