feat: recent lists
Docker Build / build (push) Has been cancelled
TS Lint / ESLint (push) Has been cancelled
TS Lint / Oxlint (push) Has been cancelled
TS Lint / TypeScript (push) Has been cancelled

This commit is contained in:
2026-07-15 16:34:37 +02:00
parent 5e60b5ad20
commit ea9a50a2f7
9 changed files with 85 additions and 31 deletions
+4
View File
@@ -21,6 +21,7 @@ import { useAlertStore } from "@/stores/alerts";
import { useI18n } from "vue-i18n";
import { onBeforeRouteUpdate, useRoute } from "vue-router";
import { shareLink } from "@/lib/share";
import { saveRecentList } from "@/lib/lists";
const route = useRoute();
@@ -56,6 +57,9 @@ function fetchTasks() {
tasks.value = data;
reSortTasks();
loading.value = false;
if (data.length && list.value) {
saveRecentList(list.value);
}
setTimeout(fetchTasks, 10000);
})
.catch(() => {