Skip to content

Commit

Permalink
[general] feature : Allow user to update api version (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
tprouvot authored Apr 13, 2023
1 parent 8a16c47 commit 5a3a45a
Show file tree
Hide file tree
Showing 5 changed files with 130 additions and 34 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Version 1.16

General
-------
* Allow users to update API Version [feature 58](https://github.com/tprouvot/Chrome-Salesforce-inspector/issues/58)
* Add org instance in the popup and a link to Salesforce trust status website [feature 53](https://github.com/tprouvot/Chrome-Salesforce-inspector/issues/53) (by [Camille Guillory](https://github.com/CamilleGuillory) )
* Fix saved query when it contains ":" [issue 55](https://github.com/tprouvot/Chrome-Salesforce-inspector/issues/55) (by [Victor Garcia](https://github.com/victorgz/) )

Expand Down
2 changes: 1 addition & 1 deletion addon/inspector.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export let apiVersion = "57.0";
export let apiVersion = localStorage.getItem("apiVersion") == null ? "57.0" : localStorage.getItem("apiVersion");
export let sfConn = {

async getSession(sfHost) {
Expand Down
3 changes: 1 addition & 2 deletions addon/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@
],
"js": [
"button.js",
"inspect-inline.js",
"links.js"
"inspect-inline.js"
]
}
],
Expand Down
Loading

0 comments on commit 5a3a45a

Please sign in to comment.