We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b18dc1d commit 24b1c36Copy full SHA for 24b1c36
lib/Controller/AjaxController.php
@@ -258,6 +258,8 @@ public function stopTimer($name) {
258
public function deleteWorkInterval($id) {
259
$wi = $this->workIntervalMapper->find($id);
260
$this->workIntervalMapper->delete($wi);
261
+
262
+ $running = $this->workIntervalMapper->findAllRunning($this->userId);
263
264
return new JSONResponse(["WorkIntervals" => json_decode(json_encode($running), true)]);
265
}
0 commit comments