From b4f6630d0df2d57b783e023989e8c461092665b8 Mon Sep 17 00:00:00 2001 From: jdyer21 Date: Thu, 5 Nov 2020 11:10:05 -0500 Subject: [PATCH] remove from booklist button foreach item in booklist, but it's only an add button still needs fix --- booklist.html | 2 +- booklist.js | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/booklist.html b/booklist.html index e82dcdf..7f61f01 100644 --- a/booklist.html +++ b/booklist.html @@ -160,4 +160,4 @@ - \ No newline at end of file + diff --git a/booklist.js b/booklist.js index b2c46b1..020fbf5 100644 --- a/booklist.js +++ b/booklist.js @@ -27,7 +27,10 @@ const displayUsingApi = false; function makeListItem(book) { const a = `

${book.title}

` - const li = `
  • ${a}Author: ${book.author}
  • ` + const li = `
  • ${a}Author: ${book.author}
  • ` console.log(li) return li }