- Implemented editing of the todos

- Modified the AddChoreDialog.tsx to be able to edit or add new items
This commit is contained in:
Dejan
2024-10-15 22:31:53 +02:00
parent 0f75be8d1e
commit dc05090f49
4 changed files with 55 additions and 89 deletions

View File

@ -3,7 +3,7 @@ export interface IToDo {
title: string;
done: boolean;
date: Date | null;
points?: number;
points: number;
rotate: boolean;
repeatType: string;
creatorId?: string,