How do I scroll to bottom, on a scrollable content that displays a Show when

<div ref={$content} Show when={signal()}
createEffect(() => {
set_signal(true)
$content.scrollToBottom()
})
createEffect(() => {
set_signal(true)
$content.scrollToBottom()
})
this doesn't work. If I create effect that watches the signal then it works. what is the best way to do this
1 Reply
Razboy20
Razboy202y ago
try
createEffect(on(signal, () => {
set_signal(true)
$content.scrollToBottom()
}))
createEffect(on(signal, () => {
set_signal(true)
$content.scrollToBottom()
}))