mirror of
https://github.com/discourse/discourse.git
synced 2025-02-12 06:14:54 +00:00
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(); }) } ```