mirror of
https://github.com/keycloak/keycloak.git
synced 2026-04-26 00:30:35 -04:00
The Authorization Resources table was incorrectly duplicating the last element of the current page as the first element of the next page. This occurred because the fetching logic requests 'max + 1' items to detect if a subsequent page exists. However, the UI was rendering the entire array instead of limiting the display to the 'max' value. Fixed by applying a .slice(0, max) before mapping the resources to table rows. Added a Playwright E2E regression test to ensure unique resource distribution across pages and prevent future regressions. Closes #46088 --------- Signed-off-by: André Rocha <andre.queiroz.rocha@tecnico.ulisboa.pt> Signed-off-by: Alexander Schwartz <alexander.schwartz@ibm.com> Co-authored-by: Alexander Schwartz <alexander.schwartz@ibm.com> |
||
|---|---|---|
| .. | ||
| .husky | ||
| apps | ||
| libs | ||
| themes-vendor | ||
| util | ||
| .gitignore | ||
| CODING_GUIDELINES.md | ||
| eslint.config.js | ||
| osv-scanner.toml | ||
| package.json | ||
| pnpm-lock.yaml | ||
| pnpm-workspace.yaml | ||
| pom.xml | ||
| README.md | ||
| tsconfig.eslint.json | ||
| tsconfig.json | ||
Keycloak JavaScript
This directory contains the UIs and related libraries of the Keycloak project written in JavaScript (and TypeScript).
Directory structure
├── apps
│ ├── account-ui # Account UI for account management i.e controlling password and account access, tracking and managing permissions
│ ├── admin-ui # Admin UI for handling login, registration, administration, and account management
│ └── keycloak-server # Keycloak server for local development of UIs
├── libs
│ ├── ui-shared # Shared component library between admin and account
│ └── keycloak-admin-client # Keycloak Admin Client library for Keycloak REST API
├── ...
Data processing
Red Hat may process information including business contact information and code contributions as part of its participation in the project, data is processed in accordance with Red Hat Privacy Statement.
To speed up the build process, the following build flag can be used to disable the processing of these modules:
-Dskip.npm
Contributing
If you want to contribute please look at the coding guidelines