Skip to content

Commit

Permalink
fix display
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Leung <[email protected]>
  • Loading branch information
rleungx committed May 8, 2024
1 parent 42fbffa commit 4cafd01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/playground/playground.go
Original file line number Diff line number Diff line change
Expand Up @@ -595,13 +595,13 @@ func (p *Playground) WalkInstances(fn func(componentID string, ins instance.Inst
}
}
for _, ins := range p.tsos {
err := fn(spec.ComponentPD, ins)
err := fn(spec.ComponentTSO, ins)
if err != nil {
return err
}
}
for _, ins := range p.schedulings {
err := fn(spec.ComponentPD, ins)
err := fn(spec.ComponentScheduling, ins)
if err != nil {
return err
}
Expand Down

0 comments on commit 4cafd01

Please sign in to comment.