Added missing files

This commit is contained in:
2026-03-21 17:56:39 +01:00
parent 8dfcffc92b
commit 6c3c318f86
3 changed files with 936 additions and 82 deletions

View File

@@ -39,6 +39,8 @@ export const tasks = pgTable("tasks", {
() => customers.id
),
dependencyIds: jsonb("dependency_ids").notNull().default([]),
profiles: jsonb("profiles").notNull().default([]),
archived: boolean("archived").notNull().default(false),

File diff suppressed because it is too large Load Diff

View File

@@ -1,4 +1,4 @@
import { Chart, Title, Tooltip, Legend, LineElement, CategoryScale, LinearScale, PointElement } from 'chart.js'
import { Chart, Title, Tooltip, Legend, LineElement, CategoryScale, LinearScale, PointElement, BarElement } from 'chart.js'
export default defineNuxtPlugin(() => {
Chart.register(CategoryScale, LinearScale, LineElement, Title, Tooltip, Legend, PointElement)
})
Chart.register(CategoryScale, LinearScale, LineElement, Title, Tooltip, Legend, PointElement, BarElement)
})