From 8b3c41469a6df626c4ca26ee02df5e2961ee8c69 Mon Sep 17 00:00:00 2001 From: Nico Bakomihalis Date: Fri, 25 Oct 2024 15:34:34 -0500 Subject: [PATCH] console.log --- node-parents-children/app.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/node-parents-children/app.js b/node-parents-children/app.js index b4f4f29..87bc3dc 100644 --- a/node-parents-children/app.js +++ b/node-parents-children/app.js @@ -4,6 +4,7 @@ function initGrist(){ console.log("record", record); const mapped = grist.mapColumnNames(record); // First check if all columns were mapped. + console.log("mapped", mapped); if (mapped) { renderPage(mapped); } else { @@ -17,7 +18,7 @@ function initGrist(){ function renderPage(mapped){ const node = mapped.node; - console.log("") + console.log("node", node); document.getElementById("node").innerText = node; }