Codebase list docker-compose / 285a9c9
Merge pull request #9476 from maxcleme/9469-fix-flickering-prompt fix: prevent flickering prompt when pulling same image from N services Guillaume Lours authored 2 years ago GitHub committed 2 years ago
1 changed file(s) with 4 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
8282 last.Status = e.Status
8383 last.Text = e.Text
8484 last.StatusText = e.StatusText
85 last.ParentID = e.ParentID
85 // allow set/unset of parent, but not swapping otherwise prompt is flickering
86 if last.ParentID == "" || e.ParentID == "" {
87 last.ParentID = e.ParentID
88 }
8689 w.events[e.ID] = last
8790 } else {
8891 e.startTime = time.Now()