fix: fix meta#668
Merged
Merged
Conversation
imsitnikov
previously approved these changes
Jun 30, 2026
imsitnikov
approved these changes
Jun 30, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fix incorrect Open Graph metadata that caused wrong or inconsistent link previews when sharing subpages (e.g. in Telegram).
On pages like
/ru/components/uikit/accordion,og:title,og:description, andog:imagedescribed the current page, but several other OG tags were wrong:og:urlwas hardcoded tohttps://gravity-ui.com/on every pageog:localewas alwaysen, even on localized routes (/ru/,/de/, etc.)og:site_nameused the page title (e.g.UIKit – Accordion) instead of the site nameThis conflicted with the correct
<link rel="canonical">and could cause crawlers (Telegram, Facebook, etc.) to associate subpages with the homepage preview or cache the wrong card.Fix
src/utils/canonical.tswith shared helpers to build canonical URLs from locale + path (getCanonicalUrlForLocale) and from the router path (getCanonicalUrlFromAsPath)Meta.tsxto set:og:urlfrom the current page URL (matches canonical)og:localefrom the active localeog:site_nametoGravity UI(constant, separate from page title)_document.tsxto use the same canonical URL helper for<link rel="canonical">