From 21e8d6ffaaa65be940033d55f871758dc3e07da3 Mon Sep 17 00:00:00 2001 From: Pietro Martino Date: Mon, 22 May 2023 17:33:47 +0200 Subject: [PATCH 1/2] fix ctrl+m, ctrl+a shortcuts --- addon/popup.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addon/popup.js b/addon/popup.js index 88c48ce4..be16c9d4 100644 --- a/addon/popup.js +++ b/addon/popup.js @@ -60,11 +60,11 @@ class App extends React.PureComponent { onShortcutKey(e) { if (e.key == "m") { e.preventDefault(); - this.refs.showAllDataBox.clickShowDetailsBtn(); + this.refs.showAllDataBox.refs?.showAllDataBoxSObject?.clickShowDetailsBtn(); } if (e.key == "a") { e.preventDefault(); - this.refs.showAllDataBox.clickAllDataBtn(); + this.refs.showAllDataBox.refs?.showAllDataBoxSObject?.clickAllDataBtn(); } if (e.key == "e") { e.preventDefault(); From a93520a71dfff9a368e20d8f2b0684ac68fe1bfa Mon Sep 17 00:00:00 2001 From: Pietro Martino Date: Wed, 24 May 2023 18:03:13 +0200 Subject: [PATCH 2/2] update release note --- CHANGES.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index b8b77219..043384e3 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -2,6 +2,8 @@ Version 1.18 =========== General +------- +* Fix "Show all data" shortcut from popup [issue 96](https://github.com/tprouvot/Salesforce-Inspector-reloaded/issues/96) (fix by [Pietro Martino](https://github.com/pietromartino)) Version 1.17 ===========