We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fa3cf5 commit 0cc313eCopy full SHA for 0cc313e
REPL/ext/REPLMode/show.jl
@@ -31,11 +31,12 @@ function repl_show(input::AbstractString)
31
if dataset isa DataSet
32
print(" UUID: ")
33
printstyled(dataset.uuid, '\n', color=:light_magenta)
34
- if !isempty(dataset.parameters)
+ if !isempty(dataset.parameters) && !(length(dataset.parameters) == 1 && first(keys(dataset.parameters)) == "description")
35
println(" Parameters:")
36
pkeys = collect(keys(dataset.parameters))
37
pkeypad = maximum(textwidth, pkeys)
38
for key in sort(pkeys, by=natkeygen)
39
+ key == "description" && continue
40
print(" ", lpad(key, pkeypad), ' ')
41
printstyled(dataset.parameters[key], '\n', color=:light_cyan)
42
end
0 commit comments