Skip to content

Commit

Permalink
Display 15-char Org Id (#324)
Browse files Browse the repository at this point in the history
## Describe your changes
Display 15-char Org Id in Org Tab (instead of 18-char Id)

## Issue ticket number and link
Fixes #323 

## Checklist before requesting a review
- [X] I have read and understand the [Contributions
section](https://github.com/tprouvot/Salesforce-Inspector-reloaded#contributions)
- [X] Target branch is releaseCandidate and not master
- [X] I have performed a self-review of my code
- [X] I ran the [unit
tests](https://github.com/tprouvot/Salesforce-Inspector-reloaded#unit-tests)
and my PR does not break any tests
- [ ] I documented the changes I've made on the
[CHANGES.md](https://github.com/tprouvot/Salesforce-Inspector-reloaded/blob/master/CHANGES.md)
and followed actual conventions
- [ ] I added a new section on
[how-to.md](https://github.com/tprouvot/Salesforce-Inspector-reloaded/blob/master/docs/how-to.md)
(optional)

Co-authored-by: Mehdi Cherfaoui <>
  • Loading branch information
mehdicherf authored Mar 4, 2024
1 parent d987ee3 commit 3aaf6aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addon/popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -1191,7 +1191,7 @@ class AllDataBoxOrg extends React.PureComponent {
h("tbody", {},
h("tr", {},
h("th", {}, h("a", {href: "https://" + sfHost + "/lightning/setup/CompanyProfileInfo/home", title: "Company Information", target: linkTarget}, "Org Id:")),
h("td", {}, orgInfo.Id)
h("td", {}, orgInfo.Id.substring(0, 15))
),
h("tr", {},
h("th", {}, h("a", {href: "https://status.salesforce.com/instances/" + orgInfo.InstanceName, title: "Instance status", target: linkTarget}, "Instance:")),
Expand Down

0 comments on commit 3aaf6aa

Please sign in to comment.