Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Console - Display Org name instead of id #3009

Merged
merged 1 commit into from
Mar 26, 2020

Conversation

RemiDesgrange
Copy link
Contributor

Closes #2935 - In the detail page (/console/account/userdetails) we
are now displaying the org name instead of the id (ex: Camptocamp
instead of c2c).

Closes #2935 - In the detail page (`/console/account/userdetails`) we
are now displaying the org name instead of the id (ex: Camptocamp
instead of c2c).
@fvanderbiest fvanderbiest added this to the 20.1.0 milestone Mar 26, 2020
@fvanderbiest fvanderbiest merged commit 296abe3 into master Mar 26, 2020
@fvanderbiest fvanderbiest deleted the port-of-pr-3005-to-master branch March 26, 2020 09:58
@fvanderbiest
Copy link
Member

Thanks :-)

@@ -146,7 +146,7 @@ private EditUserDetailsFormBean createForm(final Account account) {
formBean.setFacsimile(account.getFacsimile());
formBean.setDescription(account.getDescription());
formBean.setPostalAddress(account.getPostalAddress());
formBean.setOrg(account.getOrg());
formBean.setOrg(orgsDao.findByCommonName(account.getOrg()).getName());
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oops, should have seen this, cf #3184

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

console - userdetails page displays org short name rather than full name
2 participants