From bfb3eeaf13262a6578d2404cfab969135b5626e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?I=CC=81caro?= Date: Tue, 25 May 2021 18:22:33 -0300 Subject: [PATCH] Improve SEO performance on search pages --- CHANGELOG.md | 2 ++ store/blocks/search.jsonc | 10 ++++++++++ 2 files changed, 12 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 502f015b..4698e674 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Changed +- `search-fetch-previous` and `search-fetch-more` to use `a` tags to improve SEO performance ## [4.3.0] - 2021-01-14 ### Added diff --git a/store/blocks/search.jsonc b/store/blocks/search.jsonc index 26f511e5..22be9416 100644 --- a/store/blocks/search.jsonc +++ b/store/blocks/search.jsonc @@ -137,6 +137,16 @@ }, "children": ["search-fetch-more"] }, + "search-fetch-previous": { + "props": { + "htmlElementForButton": "a" + } + }, + "search-fetch-more": { + "props": { + "htmlElementForButton": "a" + } + }, "flex-layout.row#products": { "children": ["search-content"] },