Removed title from search results

This commit is contained in:
squidfunk 2020-02-02 16:35:47 +01:00
parent c1f0d4ab9a
commit 4e76da9647
4 changed files with 4 additions and 4 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -53,7 +53,7 @@ export function renderArticleDocument(
{ location, title, text }: ArticleDocument
): HTMLElement {
return (
<a href={location} title={title} class={css.link} tabIndex={-1}>
<a href={location} class={css.link} tabIndex={-1}>
<article class={css.article}>
<h1 class={css.title}>{title}</h1>
{text.length

View File

@ -53,7 +53,7 @@ export function renderSectionDocument(
{ location, title, text }: SectionDocument
): HTMLElement {
return (
<a href={location} title={title} class={css.link} tabIndex={-1}>
<a href={location} class={css.link} tabIndex={-1}>
<article class={css.article}>
<h1 class={css.title}>{title}</h1>
{text.length