diff --git a/src/components/AddressBar.astro b/src/components/AddressBar.astro index 2abc001..2f3aaef 100644 --- a/src/components/AddressBar.astro +++ b/src/components/AddressBar.astro @@ -11,7 +11,7 @@ const form = new FormGroup([ { name: "url", value: url, - placeholder: "Put the URL here", + placeholder: "Type a URL here", validators: [Validators.required, Validators.minLength(11)], }, ]); @@ -37,7 +37,6 @@ const form = new FormGroup([ diff --git a/src/components/Library.astro b/src/components/Library.astro index a761568..84ce1cc 100644 --- a/src/components/Library.astro +++ b/src/components/Library.astro @@ -7,6 +7,7 @@ export interface Props { const {postDivSelector, skipSave = false} = Astro.props; ---
+
@@ -32,6 +33,9 @@ const {postDivSelector, skipSave = false} = Astro.props; const list = document.querySelector('#post-list'); if(cachedRequests?.length) { + const heading = document.querySelector('#library span#heading') as HTMLHeadingElement; + heading.innerHTML = 'History'; + cachedRequests // temporary delete all cached errors .filter(request => { @@ -79,18 +83,18 @@ const {postDivSelector, skipSave = false} = Astro.props; -