fix(KNO-12548): Update link styling in Table cells#1386
fix(KNO-12548): Update link styling in Table cells#1386
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
Risk MEDIUM: Adds inline link styling (color and textDecoration) to <a> tags within Table cells across two MDX content files.
Reasons
- Only
.mdxcontent files are modified (no component, layout, or config changes), which avoids HIGH risk triggers. - Changes span two different documentation sections (
content/integrations/andcontent/template-editor/), which triggers a MEDIUM classification. - The diff is 88 additions / 14 deletions across 2 files — moderately sized but mostly whitespace reformatting from expanding inline JSX into multi-line blocks.
- No new pages, sidebar changes, or dependency updates are involved.
- The styling approach uses inline
styleattributes with CSS variables rather than modifying shared components or stylesheets.
Notes
- Verify that
var(--tgph-accent-11)renders correctly in all themes/contexts where these Table cells appear. - Consider whether a shared CSS class or component-level style for table links would be more maintainable than repeating inline styles on each
<a>tag (the samestyleobject is applied ~8 times). - Confirm that
target="_blank"andrel="noreferrer"are intentionally added to internal doc links (e.g.,#date-format-optionsanchor links) — same-page anchors typically don't need to open in new tabs.
Sent by Cursor Automation: Docs PR classifier
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 6bec450. Configure here.
| delivery status of a message | ||
| </a>. | ||
| </a> | ||
| . |
There was a problem hiding this comment.
Unwanted space before period after link text
Low Severity
Splitting the </a> tag and the period onto separate lines in JSX causes an extra space to appear before the period due to whitespace normalization, rendering "delivery status of a message ." instead of "delivery status of a message."
Reviewed by Cursor Bugbot for commit 6bec450. Configure here.





Description
This updates links in
Tablecells so that styling is applied to make it clear to users that they are links. In my review, it looks like we just needed to updatecontent/integrations/extensions/data-sync.mdx(both messages and recipient changes tables) andcontent/template-editor/reference-liquid-helpers.mdx(link)Tasks
KNO-12548
Screenshots
Before:

After:
