Skip to content

Commit cb52064

Browse files
committed
fix(strategies): mute prefix color in show output
Wrap the ├─/└─ prefix with fmt.muted / fmt.reset so the tree guides are visually de-emphasised relative to the key names.
1 parent f4a538e commit cb52064

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/Strategies/contract/abstract_strategy.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,9 @@ function Base.show(io::IO, ::MIME"text/plain", strategy::T) where {T<:AbstractSt
506506
prefix = is_last ? "└─ " : "├─ "
507507
println(
508508
io,
509+
fmt.muted,
509510
prefix,
511+
fmt.reset,
510512
fmt.name,
511513
key,
512514
fmt.reset,

0 commit comments

Comments
 (0)