update test

This commit is contained in:
2026-05-24 11:09:12 +02:00
parent c9f2863815
commit 264d9f1402
9 changed files with 575 additions and 138 deletions
+5
View File
@@ -42,6 +42,11 @@ export class IssuesStore {
return this.data().find((i) => i.id === id);
}
getNextId(): number {
const ids = this.data().map((i) => i.id);
return ids.length === 0 ? 1 : Math.max(...ids) + 1;
}
async load(): Promise<void> {
if (this.loaded()) return;
this.loading.set(true);