Add support for tags

This commit is contained in:
2025-01-15 14:56:16 +01:00
parent 12fa9e4e75
commit 31c309aecc
4 changed files with 56 additions and 5 deletions

View File

@@ -3,6 +3,8 @@ import { Dayjs } from "dayjs";
export type Task = {
status: string;
label: string;
fullLabel: string;
tags: string[];
priority: TaskPriority;
createdDate?: Dayjs;
startDate?: Dayjs;