Added missing files
This commit is contained in:
@@ -39,6 +39,8 @@ export const tasks = pgTable("tasks", {
|
|||||||
() => customers.id
|
() => customers.id
|
||||||
),
|
),
|
||||||
|
|
||||||
|
dependencyIds: jsonb("dependency_ids").notNull().default([]),
|
||||||
|
|
||||||
profiles: jsonb("profiles").notNull().default([]),
|
profiles: jsonb("profiles").notNull().default([]),
|
||||||
|
|
||||||
archived: boolean("archived").notNull().default(false),
|
archived: boolean("archived").notNull().default(false),
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -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(() => {
|
export default defineNuxtPlugin(() => {
|
||||||
Chart.register(CategoryScale, LinearScale, LineElement, Title, Tooltip, Legend, PointElement)
|
Chart.register(CategoryScale, LinearScale, LineElement, Title, Tooltip, Legend, PointElement, BarElement)
|
||||||
})
|
})
|
||||||
|
|||||||
Reference in New Issue
Block a user