diff --git a/src/lib/data/list-variants.ts b/src/lib/data/list-variants.ts index 2596b2a..e11fe98 100644 --- a/src/lib/data/list-variants.ts +++ b/src/lib/data/list-variants.ts @@ -1,7 +1,7 @@ export const VARIANT = { - standard: "Standard", - checklist: "Checklist", - project: "Project", + standard: "standard", + checklist: "checklist", + project: "project", } as const; export const VARIANTS = Object.values(VARIANT) as unknown as readonly [ diff --git a/src/lib/data/task-labels.ts b/src/lib/data/task-labels.ts index 229cd53..4aae038 100644 --- a/src/lib/data/task-labels.ts +++ b/src/lib/data/task-labels.ts @@ -1,10 +1,10 @@ export const LABEL = { - feature: "Feature", - bug: "Bug", - docs: "Docs", - chore: "Chore", - refactor: "Refactor", - build: "Build", + feature: "feature", + bug: "bug", + docs: "docs", + chore: "chore", + refactor: "refactor", + build: "build", } as const; export const LABELS = Object.values(LABEL) as unknown as readonly [ diff --git a/src/lib/data/task-priority.ts b/src/lib/data/task-priority.ts index b2631f3..d6cc8b1 100644 --- a/src/lib/data/task-priority.ts +++ b/src/lib/data/task-priority.ts @@ -1,7 +1,7 @@ export const PRIORITY = { - high: "High", - medium: "Medium", - low: "Low", + high: "high", + medium: "medium", + low: "low", } as const; export const PRIORITIES = Object.values(PRIORITY) as unknown as readonly [ diff --git a/src/lib/data/task-status.ts b/src/lib/data/task-status.ts index 082371b..0b95911 100644 --- a/src/lib/data/task-status.ts +++ b/src/lib/data/task-status.ts @@ -1,9 +1,9 @@ export const STATUS = { - backlog: "Backlog", - todo: "Todo", - inProgress: "In Progress", - done: "Done", - canceled: "Canceled", + backlog: "backlog", + todo: "todo", + inprogress: "in progress", + done: "done", + canceled: "canceled", } as const; export const STATUSES = Object.values(STATUS) as unknown as readonly [