Revert "Added missing files"
All checks were successful
Build and Push Docker Images / build-backend (push) Successful in 15s
Build and Push Docker Images / build-frontend (push) Successful in 53s

This reverts commit 6c3c318f86.
This commit is contained in:
2026-03-21 17:57:26 +01:00
parent 8038f03406
commit cfd84b773f
3 changed files with 83 additions and 937 deletions

View File

@@ -39,8 +39,6 @@ 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, BarElement } from 'chart.js'
import { Chart, Title, Tooltip, Legend, LineElement, CategoryScale, LinearScale, PointElement } from 'chart.js'
export default defineNuxtPlugin(() => {
Chart.register(CategoryScale, LinearScale, LineElement, Title, Tooltip, Legend, PointElement, BarElement)
})
Chart.register(CategoryScale, LinearScale, LineElement, Title, Tooltip, Legend, PointElement)
})