Skip to content

Commit

Permalink
console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
Nico Bakomihalis committed Oct 25, 2024
1 parent c95d556 commit 8b3c414
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion node-parents-children/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -17,7 +18,7 @@ function initGrist(){

function renderPage(mapped){
const node = mapped.node;
console.log("")
console.log("node", node);
document.getElementById("node").innerText = node;
}

Expand Down

0 comments on commit 8b3c414

Please sign in to comment.