From 8460673abfd68af320cf12ddce34c218dabc26c1 Mon Sep 17 00:00:00 2001 From: lukas Date: Fri, 17 Jan 2025 02:42:25 +0100 Subject: [PATCH] fix missing Main Dilution --- sample_prep_protocol.html | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/sample_prep_protocol.html b/sample_prep_protocol.html index 84ed618..6321937 100644 --- a/sample_prep_protocol.html +++ b/sample_prep_protocol.html @@ -41,7 +41,7 @@
-
@@ -82,13 +82,6 @@ var db; let openRequest = indexedDB.open("my_db"); - openRequest.onupgradeneeded = function() { - db = openRequest.result; - db.createObjectStore("microscope_setup", {autoIncrement : true}); - db.createObjectStore("prep_protocol", {autoIncrement : true}); - - }; - openRequest.onerror = function() { console.error("Error", openRequest.error); }; @@ -106,6 +99,7 @@ let prep_protocol = { "name" : document.getElementById("name").value, "Sample_Size" : document.getElementById("Sample_Size").value, + "Main_Dilution" : document.getElementById("Main_Dilution").value, "Setteling_Time" : document.getElementById("Setteling_Time").value, "Prep_Notes" : document.getElementById("Prep_Notes").value }