Skip to content

Commit

Permalink
Remove item from this.getEntryForProperty (#1833)
Browse files Browse the repository at this point in the history
  • Loading branch information
umesh-timalsina authored Aug 4, 2020
1 parent be9a928 commit 7ae0960
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/viz/ConfigDialogEntries/CustomConfigEntries.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ define([
const widget = {el: null};
widget.el = $('<div>', {class: configEntry.name});
const entries = configEntry.valueItems.map(item => {
return item.this.getEntryForProperty(item, config);
return this.getEntryForProperty(item, config);
});
widget.getValue = () => {
const config = {};
Expand Down

0 comments on commit 7ae0960

Please sign in to comment.