Skip to content

Commit

Permalink
Release 2024-03-28 (#968)
Browse files Browse the repository at this point in the history
* #302646 Remove pagination param from canonical URL on CLP (#967)
  • Loading branch information
cewald authored Mar 28, 2024
2 parents 67b1153 + 2cc3172 commit f7e28ca
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions src/modules/icmaa-meta/mixins/categoryMeta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,15 @@ export default {
}

if (this.$route?.query?.p) {
link.push({
vmid: 'canonical',
rel: 'canonical',
href: config.icmaa_meta.base_url + this.$route.fullPath
})
/**
* #302646 We remove the pagination-param from canonical URL for an experiment
* @see https://www.icmaa.info/redmine/issues/302646
*/
// link.push({
// vmid: 'canonical',
// rel: 'canonical',
// href: config.icmaa_meta.base_url + this.$route.fullPath
// })

const { page } = this.stats
if (page > 1) {
Expand Down

0 comments on commit f7e28ca

Please sign in to comment.