diff --git a/src/index.html b/src/index.html index ffb7635..3c2810a 100644 --- a/src/index.html +++ b/src/index.html @@ -471,7 +471,7 @@
-

My Library

+

My Library

Export diff --git a/src/script.js b/src/script.js index f20ea70..3a7e3d0 100644 --- a/src/script.js +++ b/src/script.js @@ -311,8 +311,11 @@ onboardDontShowInTabOptionBtn, TextareaAutoComplete */ + 'X' + '

' + item.title + '

Last updated: ' + utils.getHumanDate(item.updatedOn) + '
'; }); + savedItemCount.textContent = '(' + items.length + ')'; + savedItemCount.style.display = 'inline'; } else { html += '

Nothing saved here.

'; + savedItemCount.style.display = 'none'; } savedItemsPane.querySelector('#js-saved-items-wrap').innerHTML = html; toggleSavedItemsPane();