huangkevin-apr opened a new pull request, #1985: URL: https://github.com/apache/apisix-website/pull/1985
Fixes: #1984 Changes: ## Solution Added descriptive `title` props to all `<Tick>` and `<Cross>` components in the comparison table: - `<Tick title="Supported" />` - Clearly indicates the feature is supported in APISIX - `<Cross title="Not supported" />` - Clearly indicates the feature is not supported in other API gateways ## Changes Made ### Files Modified: - `website/src/components/sections/Comparison.tsx` ### Detailed Changes: #### 1. Dubbo, MQTT, Tengine and REST API to gRPC transcoding ```tsx // Before <td><Tick /></td> <td><Cross /></td> // After <td><Tick title="Supported" /></td> <td><Cross title="Not supported" /></td> ``` #### 2. Configuration rollback ```tsx // Before <td><Tick /></td> <td><Cross /></td> // After <td><Tick title="Supported" /></td> <td><Cross title="Not supported" /></td> ``` #### 3. Custom Load Balancing and routing ```tsx // Before <td><Tick /></td> <td><Cross /></td> // After <td><Tick title="Supported" /></td> <td><Cross title="Not supported" /></td> ``` #### 4. Plugin hot loading ```tsx // Before <td><Tick /></td> <td><Cross /></td> // After <td><Tick title="Supported" /></td> <td><Cross title="Not supported" /></td> ``` #### 5. Dashboard ```tsx // Before <td><Tick /></td> <td><Cross /></td> // After <td><Tick title="Supported" /></td> <td><Cross title="Not supported" /></td> ``` #### 6. Support any NGINX variable as routing condition ```tsx // Before <td><Tick /></td> <td><Cross /></td> // After <td><Tick title="Supported" /></td> <td><Cross title="Not supported" /></td> ``` ## Screenshots of the change: <!-- Add screenshots depicting the changes. --> **Fix Before** <img width="406" height="116" alt="image" src="https://github.com/user-attachments/assets/d2a8ede7-59b4-4b44-bfcc-c3a6c19f21ee" /> **Fix After** <img width="410" height="133" alt="image" src="https://github.com/user-attachments/assets/939d08ee-7931-4493-874d-1feaa1612832" /> ## Additional Info The patch submitted in this PR was generated by [A11YRepair](https://sites.google.com/view/a11yrepair/home), an automated Web Accessibility repair tool that I developed to address common accessibility violations in web applications. The generated fixes were manually reviewed and validated before submission. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
