Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
zkPorpoise committed Feb 27, 2024
1 parent 9717dfb commit 5598535
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion my-responses.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
const tableBody = document.getElementById('tableBody');
output.map((user) => {
let newRow = document.createElement('tr');
newRow.innerHTML = `<td>${user.surveyroot}</td><td>${user.surveyselection}</td><td>${username.timestamp}</td>`
newRow.innerHTML = `<td>${user.surveyroot.slice(0,15)}...</td><td>${user.surveyselection}</td><td>${user.timestamp}</td>`
tableBody.appendChild(newRow);
})
})
Expand Down

0 comments on commit 5598535

Please sign in to comment.