remove outdated check, refactor tasks

This commit is contained in:
2023-12-04 19:42:04 -07:00
parent 0bbadfec6d
commit 1127d7079b
4 changed files with 5 additions and 10 deletions

View File

@@ -358,9 +358,7 @@ export default class DiscoverView extends Vue {
const plans: ProjectData[] = results.data;
for (const plan of plans) {
const { name, description, handleId = plan.handleId, rowid } = plan;
if (beforeId !== plan["rowid"]) {
this.projects.push({ name, description, handleId, rowid });
}
this.projects.push({ name, description, handleId, rowid });
}
} else {
this.projects = results.data;