diff --git a/benchtop-fe/src/components/PDF/PDF.vue b/benchtop-fe/src/components/PDF/PDF.vue index 5a1c184..3e4066c 100644 --- a/benchtop-fe/src/components/PDF/PDF.vue +++ b/benchtop-fe/src/components/PDF/PDF.vue @@ -6,10 +6,9 @@ Generate PDF and Label
-
-
+
@@ -22,7 +21,7 @@
Technician: {{ props.customer?.technician }}
- + AL2P Cert
@@ -116,13 +115,11 @@
-
-
diff --git a/benchtop-fe/src/components/PDF/ReadingTable.vue b/benchtop-fe/src/components/PDF/ReadingTable.vue index eefbcf1..b21eb53 100644 --- a/benchtop-fe/src/components/PDF/ReadingTable.vue +++ b/benchtop-fe/src/components/PDF/ReadingTable.vue @@ -14,7 +14,7 @@ - TBD + HI? TBD TBD TBD diff --git a/benchtop-fe/src/components/Sheet.vue b/benchtop-fe/src/components/Sheet.vue index 1dc0447..719024b 100644 --- a/benchtop-fe/src/components/Sheet.vue +++ b/benchtop-fe/src/components/Sheet.vue @@ -62,19 +62,19 @@ import UploadForm from "./Upload/UploadForm.vue"; import PDF from "./PDF/PDF.vue"; // Not needed yet -const instrument_form_data = ref(), - calibration_form_data = ref(); +const instrument_form_data = ref(null), + calibration_form_data = ref(null); // Booleans const show_new_instrument = ref(true), show_new_calibration = ref(true); // form Data -const upload_form_data = ref(), - customer_form_data = ref(), - environment_form_data = ref(), - new_instrument_form_data = ref(), - new_calibration_form_data = ref(); +const upload_form_data = ref(null), + customer_form_data = ref(null), + environment_form_data = ref(null), + new_instrument_form_data = ref(null), + new_calibration_form_data = ref(null); const uploadForm = (form) => { upload_form_data.value = form; @@ -122,8 +122,6 @@ const emits = defineEmits([ "showNewInstrument", "showNewCalibration", ]); - -