Skip to content

Commit

Permalink
[5.3] MACT-99: Fix issue where 'Account Sales Representative' section…
Browse files Browse the repository at this point in the history
… is not displayed (#190)
  • Loading branch information
pcandia committed Oct 16, 2023
1 parent 891565f commit d565f69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -1015,7 +1015,7 @@ define(function(require) {
], callback);
}, accountId),
mergeResults = function(data) {
return _.chain(data.metadata).pick(['billing_mode', 'enabled', 'superduper_admin', 'wnm_allow_additions', 'created', 'is_reseller']).merge(data.data).value();
return _.chain(data.metadata).pick(['billing_mode', 'enabled', 'superduper_admin', 'wnm_allow_additions', 'created', 'is_reseller', 'reseller_id']).merge(data.data).value();
},
fetchData = function(callback) {
monster.parallel({
Expand Down

0 comments on commit d565f69

Please sign in to comment.