10000 account/ui spinner use patternfly v3 classes instead of patternfly v5 classes · Issue #33078 · keycloak/keycloak · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
account/ui spinner use patternfly v3 classes instead of patternfly v5 classes #33078
Closed
@mrleblanc101

Description

@mrleblanc101

Before reporting an issue

  • I have read and understood the above terms for submitting issues, and I understand that my issue may be closed without action if I do not follow them.

Area

account/ui

Describe the bug

The index.ftl of account/ui still use .pf-c-spinner instead of . pf-v5-c-spinner which results in a missing loading spinner when loading the react app for the account console

Screenshot 2024-09-18 at 5 06 08 PM

The spinner shoud look like this:

2024-09-18 17 11 20

Version

25.0.5

Regression

  • The issue is a regression

Expected behavior

<main class="container">
  <div class="keycloak__loading-container">
    <svg class="pf-v5-c-spinner pf-m-xl" role="progressbar" aria-valuetext="Loading..." viewBox="0 0 100 100" aria-label="Contents"><circle class="pf-v5-c-spinner__path" cx="50" cy="50" r="45" fill="none"></circle></svg>
    <div>
      <p id="loading-text">Loading the Account Console</p>
    </div>
  </div>
</main>

Actual behavior

<main class="container">
  <div class="keycloak__loading-container">
    <span class="pf-c-spinner pf-m-xl" role="progressbar" aria-valuetext="Loading&hellip;">
      <span class="pf-c-spinner__clipper"></span>
      <span class="pf-c-spinner__lead-ball"></span>
      <span class="pf-c-spinner__tail-ball"></span>
    </span>
    <div>
      <p id="loading-text">Loading the Account Console</p>
    </div>
  </div>
</main>

How to Reproduce?

Anything else?

No response

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions

    0