Changes between Initial Version and Version 2 of Ticket #65014
- Timestamp:
- 04/03/2026 04:03:59 PM (2 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #65014
- Property Keywords needs-patch added; has-patch removed
-
Property
Version
changed from
trunkto5.3 -
Property
Component
changed from
AdministrationtoSite Health -
Property
Milestone
changed from
Awaiting Reviewto7.1
-
Ticket #65014 – Description
initial v2 3 3 Tools → Site Health → Status 4 4 5 ###Issue5 ==== Issue 6 6 The error indicator span is missing the required `dashicons` class. 7 7 8 8 Current markup: 9 <span class="error"></span> 9 `<span class="error"></span>` 10 10 11 11 Expected markup: 12 <span class="error dashicons"></span> 12 `<span class="error dashicons"></span>` 13 13 14 14 Because of the missing `dashicons` class, the icon is not rendered. 15 15 16 ###Steps to Reproduce16 ==== Steps to Reproduce 17 17 1. Install WordPress 7.0-RC2 18 18 2. Go to Tools → Site Health → Status … … 20 20 4. Observe missing icon next to the error message 21 21 22 ###Expected Behavior22 ==== Expected Behavior 23 23 The error icon (dashicon) should be visible. 24 24 25 ###Actual Behavior25 ==== Actual Behavior 26 26 No icon is displayed. 27 27 28 ###Proposed Fix28 ==== Proposed Fix 29 29 Add the `dashicons` class to the error span element. 30 30 31 ###Additional Notes31 ==== Additional Notes 32 32 I have verified that adding the `dashicons` class fixes the issue. 33 33