Skip to content

Commit

Permalink
adapt datakey
Browse files Browse the repository at this point in the history
  • Loading branch information
hhaensel committed Mar 28, 2024
1 parent ecc445b commit ed1057e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Tables.jl
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ end
change_inner_style::Union{Nothing,AbstractString,AbstractDict,Vector} = nothing,
rowkey::String = ID,
datakey::String = "$table.rows",
datakey::String = "$table.data",
columnskey::String = "$table.columns",
kwargs...)
Expand Down Expand Up @@ -316,7 +316,7 @@ function cell_template(table::Symbol, ref_table::Union{Nothing,Symbol} = nothing
change_inner_class::Union{Nothing,AbstractString,AbstractDict,Vector} = nothing,
change_inner_style::Union{Nothing,AbstractString,AbstractDict,Vector} = nothing,
rowkey::String = ID,
datakey::String = "$table.rows",
datakey::String = "$table.data",
columnskey::String = "$table.columns",
kwargs...)

Expand Down Expand Up @@ -521,7 +521,7 @@ function table( fieldname::Symbol, args...;
ref_table::Union{Nothing,Symbol} = nothing,
edit::Union{Bool, AbstractString, Vector{<:AbstractString}} = false,
rowkey::String = ID,
datakey::String = "$fieldname.rows",
datakey::String = "$fieldname.data",
columnskey::String = "$fieldname.columns",
filter::Union{Symbol,String,Nothing} = nothing,
paginationsync::Union{Symbol,String,Nothing} = nothing,
Expand Down

0 comments on commit ed1057e

Please sign in to comment.