(force-update this)
(force-update this deep)
Force a component to re-render immediately.
If the second argument is true, child components will also be
re-rendered, even is their arguments have not changed.
Source
(defn
force-update
"Force a component to re-render immediately.\n\n If the second argument is true, child components will also be\n re-rendered, even is their arguments have not changed."
([this] (force-update this false))
([this deep]
(ratom/flush!)
(util/force-update this deep)
(batch/flush-after-render)))