Skip to content

Commit

Permalink
Fix for tprouvot#218 adding durableId if unset
Browse files Browse the repository at this point in the history
  • Loading branch information
jefersonchaves authored Nov 16, 2023
1 parent 67b60ec commit eb1ec3a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions addon/popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,9 @@ class AllDataBox extends React.PureComponent {
if (!entity.keyPrefix) { // For some objects the keyPrefix is only available in some of the APIs.
entity.keyPrefix = keyPrefix;
}
if (!entity.durableId) {
entity.durableId = durableId;
}
} else {
entity = {
availableApis: [],
Expand Down

0 comments on commit eb1ec3a

Please sign in to comment.