Tasks: history view does not refresh.
- Dominant language
- TypeScript
- Stars
- 117
- Forks
- 51
- Avg merge
- 2d 15h
- Merged PRs (30d)
- 4
Description
## About the bug
**Steps to reproduce:**
1. Create a notebook alert.
2. Enter an endpoint. (I used a local http server.)
3. export to task.
4. Go to Tasks > select your notebook task.
5. watch as the notifications are sent, but the page is not refreshed.
6. manually refresh the page. it's there.
.
**Expected behavior:**
Tasks page to refresh.
.
**Actual behavior:**
Not refreshed.
.
**Visual Proof:**
Before page refresh:

After refresh:

## About your environment
**Setup:**
* simple node server
```
const express = require('express')
const app = express()
const port = 80
app.get('/', (req, res) => {
res.send('Hello World!')
})
app.post('/', (req,res) => {
console.log(`POST at ${(new Date()).toString()}`)
res.send('Post received')
})
app.listen(port, '0.0.0.0', () => {
console.log(`Example app listening at http://0.0.0.0:${port}`)
})
```
* endpoint set to my external IP
* port forwarding on router to my internal IP
* tested and works.
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.