Skip to content

Commit a42fbf7

Browse files
committed
bold card
1 parent 7c980e3 commit a42fbf7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

static/history.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ document.getElementById('staticBackdrop').addEventListener('show.bs.modal',(even
2323
//for every key-value pair inside our dictionary
2424
var list_item = document.createElement('li');
2525
// create a list element
26-
list_item.appendChild(document.createTextNode(""+key+": "+value+""));
26+
list_item.innerHTML="<b>"+key+"</b>: "+value+"";
2727
//put the useful data context inside list_item
2828
list.appendChild(list_item);
2929
// finally append the element to the list parent

0 commit comments

Comments
 (0)