Skip to content

Commit

Permalink
fix: pie property name change for config settings
Browse files Browse the repository at this point in the history
  • Loading branch information
evaneus committed Jun 28, 2019
1 parent a8f1e13 commit 67ed597
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/pie-author/pie-author.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ export class Author {
.name;
pieEl.model = model;
if (this.configSettings && this.configSettings[packageName]) {
pieEl.configure = this.configSettings[packageName]
pieEl.configuration = this.configSettings[packageName]
}
}
});
Expand Down
2 changes: 1 addition & 1 deletion src/interface.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export type ItemConfig = PieContent | AdvancedItemConfig;
interface PieElement extends HTMLElement {
_model: Object,
model: Object;
configure: Object,
configuration: Object,
_configure: Object,
session: Object;
onModelChanged: Function;
Expand Down

0 comments on commit 67ed597

Please sign in to comment.