Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #59005


Ignore:
Timestamp:
09/27/2023 02:22:52 PM (3 years ago)
Author:
sabernhardt
Comment:

Thanks for the report!

This is already in the Gutenberg repository: https://github.com/WordPress/gutenberg/issues/49226

You could follow that issue and/or add to the discussion there.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #59005

    • Property Component GeneralEditor
    • Property Milestone Awaiting Review
    • Property Resolutionreported-upstream
    • Property Status newclosed
  • Ticket #59005 – Description

    initial v1  
    55Screenshot link for Preview Tag Cloud [https://tinyurl.com/2269bleb]
    66
    7 Reason for error in editor: Like in Preview page these two class (is-style-outline , wp-block-tag-cloud) should be on p tag. But in editor, only (wp-block-tag-cloud) class is there in p tag and (is-style-outline) class is in parent div. These two classes should be on same p tag just like in preview page because of the css reason
     7Reason for error in editor: Like in Preview page these two class (`is-style-outline`, `wp-block-tag-cloud`) should be on `p` tag. But in editor, only (`wp-block-tag-cloud`) class is there in `p` tag and (`is-style-outline`) class is in parent `div`. These two classes should be on same `p` tag just like in preview page because of the CSS reason
    88
     9{{{
    910.wp-block-tag-cloud.is-style-outline {
    1011    display: flex;
     
    1213    gap: 1ch;
    1314}
     15}}}