This is an automated email from the ASF dual-hosted git repository.
yzeng25 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-website.git
The following commit(s) were added to refs/heads/master by this push:
new 608a2eb647f Fix: Add accessible titles to comparison table icons
(#1985)
608a2eb647f is described below
commit 608a2eb647f3d74d4d5680edea2597b1e4b57496
Author: A11YRepair <[email protected]>
AuthorDate: Tue Apr 21 16:30:54 2026 +0800
Fix: Add accessible titles to comparison table icons (#1985)
---
website/src/components/sections/Comparison.tsx | 24 ++++++++++++------------
1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/website/src/components/sections/Comparison.tsx
b/website/src/components/sections/Comparison.tsx
index e1171b37b8a..07c374cd9db 100644
--- a/website/src/components/sections/Comparison.tsx
+++ b/website/src/components/sections/Comparison.tsx
@@ -50,33 +50,33 @@ const Comparison: FC = () => (
</tr>
<tr>
<th scope="row">Dubbo, MQTT, Tengine and REST API to gRPC
transcoding</th>
- <td><Tick /></td>
- <td><Cross /></td>
+ <td><Tick title="Supported" /></td>
+ <td><Cross title="Not supported" /></td>
</tr>
<tr>
<th scope="row">Configuration rollback</th>
- <td><Tick /></td>
- <td><Cross /></td>
+ <td><Tick title="Supported" /></td>
+ <td><Cross title="Not supported" /></td>
</tr>
<tr>
<th scope="row">Custom Load Balancing and routing</th>
- <td><Tick /></td>
- <td><Cross /></td>
+ <td><Tick title="Supported" /></td>
+ <td><Cross title="Not supported" /></td>
</tr>
<tr>
<th scope="row">Plugin hot loading</th>
- <td><Tick /></td>
- <td><Cross /></td>
+ <td><Tick title="Supported" /></td>
+ <td><Cross title="Not supported" /></td>
</tr>
<tr>
<th scope="row">Dashboard</th>
- <td><Tick /></td>
- <td><Cross /></td>
+ <td><Tick title="Supported" /></td>
+ <td><Cross title="Not supported" /></td>
</tr>
<tr>
<th scope="row">Support any NGINX variable as routing
condition</th>
- <td><Tick /></td>
- <td><Cross /></td>
+ <td><Tick title="Supported" /></td>
+ <td><Cross title="Not supported" /></td>
</tr>
</tbody>
</table>