Make WordPress Core

Changes between Initial Version and Version 2 of Ticket #65014


Ignore:
Timestamp:
04/03/2026 04:03:59 PM (2 months ago)
Author:
sabernhardt
Comment:

[45309] removed lines of CSS in favor of adding the dashicons class, and it missed at least this one message.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #65014

    • Property Keywords needs-patch added; has-patch removed
    • Property Version changed from trunk to 5.3
    • Property Component changed from Administration to Site Health
    • Property Milestone changed from Awaiting Review to 7.1
  • Ticket #65014 – Description

    initial v2  
    33Tools → Site Health → Status
    44
    5 ### Issue
     5==== Issue
    66The error indicator span is missing the required `dashicons` class.
    77
    88Current markup:
    9 <span class="error"></span>
     9`<span class="error"></span>`
    1010
    1111Expected markup:
    12 <span class="error dashicons"></span>
     12`<span class="error dashicons"></span>`
    1313
    1414Because of the missing `dashicons` class, the icon is not rendered.
    1515
    16 ### Steps to Reproduce
     16==== Steps to Reproduce
    17171. Install WordPress 7.0-RC2
    18182. Go to Tools → Site Health → Status
     
    20204. Observe missing icon next to the error message
    2121
    22 ### Expected Behavior
     22==== Expected Behavior
    2323The error icon (dashicon) should be visible.
    2424
    25 ### Actual Behavior
     25==== Actual Behavior
    2626No icon is displayed.
    2727
    28 ### Proposed Fix
     28==== Proposed Fix
    2929Add the `dashicons` class to the error span element.
    3030
    31 ### Additional Notes
     31==== Additional Notes
    3232I have verified that adding the `dashicons` class fixes the issue.
    3333