This is an automated email from the ASF dual-hosted git repository.
jimin pushed a commit to branch docusaurus
in repository https://gitbox.apache.org/repos/asf/incubator-seata-website.git
The following commit(s) were added to refs/heads/docusaurus by this push:
new 27e26961694 fix: Add accessible label to feature section (#1061)
27e26961694 is described below
commit 27e2696169402e1f467a9fed148909ba5c142f50
Author: A11YRepair <[email protected]>
AuthorDate: Sat Feb 14 12:00:26 2026 +0800
fix: Add accessible label to feature section (#1061)
---
src/pages/home/feature/index.tsx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/pages/home/feature/index.tsx b/src/pages/home/feature/index.tsx
index 7671f43dec4..e21b959ce79 100644
--- a/src/pages/home/feature/index.tsx
+++ b/src/pages/home/feature/index.tsx
@@ -120,9 +120,9 @@ const data = {
const Feature = () => {
return (
- <section className='feature-section'>
+ <section className='feature-section' aria-labelledby='feature-title'>
<div className='feature-container'>
- <h3>{data.title}</h3>
+ <h3 id='feature-title'>{data.title}</h3>
<ul>
{data.list.map((feature, i) => (
<Item feature={feature} key={i} />
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]