···33## Next
44- Fix some errors not being shown
55- Fix notification identifiers
66+- Scroll to bottom after adding channel
6778## 1.4.4 - 2023 Apr 3
89- Fix blank screen
+2
src/modals/Channel.svelte
···13131414 export let channels: Channel[]
1515 export let visible = false
1616+ export let on_add: () => void
16171718 let url = ''
1819 let fromTime: Date | null
···4647 })
4748 await loadSettings()
4849 visible = false
5050+ on_add()
4951 } else {
5052 channels[editIndex].from_time = Math.round(fromTime.getTime())
5153 channels[editIndex].refresh_rate_ms = Math.round(refreshRateMinutes * 60 * 1000)