Aman-Mittal commented on issue #144: URL: https://github.com/apache/fineract-backoffice-ui/issues/144#issuecomment-5158338214
This is fixed on `main`. Closing. `AuthService` normalises the permission list on the way in, trimming each code and de-duplicating the result (`auth.service.ts:181`): ```ts return Array.from(new Set(permissions.map((p) => p.trim()))); ``` so a backend code carrying a trailing space no longer misses an exact-match check, and the duplicate it used to produce collapses into one entry. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
