mirror of
https://github.com/discourse/discourse.git
synced 2025-02-14 15:24:57 +00:00
d9aa105c8e
Before this commit, onShow code could be impacted by code happening after the onShow call. This should ensure this code works for example: ``` onShow() { afterRender(() => { someInput.focus(); }) } ```