ProgressMeter and IJulia - multiple progress bars

Hi,

I am trying to use ProgressMeter within a notebook but the output of a for loop shows several consecutive progress bars. Any chance I can get only one?

Thanks

@showprogress 1 "Computing..." for i in 1:50
    sleep(0.05)
end

Computing… 34%|██████████████ | ETA: 0:00:02
Computing… 66%|██████████████████████████ | ETA: 0:00:01
Computing… 98%|███████████████████████████████████████| ETA: 0:00:00
Computing…100%|███████████████████████████████████████| Time: 0:00:03