diff --git a/benchtop-fe/src/components/CalibrationDevice/NewCalibrationDeviceForm.vue b/benchtop-fe/src/components/CalibrationDevice/NewCalibrationDeviceForm.vue index fa6ddc2..e66a5f9 100644 --- a/benchtop-fe/src/components/CalibrationDevice/NewCalibrationDeviceForm.vue +++ b/benchtop-fe/src/components/CalibrationDevice/NewCalibrationDeviceForm.vue @@ -80,8 +80,8 @@ import "@vuepic/vue-datepicker/dist/main.css"; const model = ref(""), serial = ref(""), cert_id = ref(""), - due_date = ref(""), - date = ref(""); + due_date = ref(new Date), + date = ref(new Date); const flow = ref(["year", "month", "calendar"]); diff --git a/benchtop-fe/src/components/PDF/PDF.vue b/benchtop-fe/src/components/PDF/PDF.vue index 88fce68..b1a1cc9 100644 --- a/benchtop-fe/src/components/PDF/PDF.vue +++ b/benchtop-fe/src/components/PDF/PDF.vue @@ -1,273 +1,310 @@