From 83c2168485fb1d4e02b704470015c359ccd8e528 Mon Sep 17 00:00:00 2001 From: Manish Kumar Pandit <78676157+manishkumar-hub@users.noreply.github.com> Date: Wed, 26 Oct 2022 01:41:41 +0530 Subject: [PATCH] Updated note component --- JS/index.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/JS/index.js b/JS/index.js index a308acd..77d5e1e 100644 --- a/JS/index.js +++ b/JS/index.js @@ -46,13 +46,13 @@ function showNotes(){ let html = ""; notesObj.forEach(function(element,index){ html += ` -
-
-
${element.Title}
-

${element.Text}

- -
-
`; +
+
+
${element.Title}
+

${element.Text}

+ +
+
`; }); let notesElm = document.getElementById("notes"); if(notesObj.length != 0){