Skip to content

Commit

Permalink
Fix #16 property _model undefined in last graph column (2)
Browse files Browse the repository at this point in the history
  • Loading branch information
danimart1991 committed May 18, 2020
1 parent 3863c67 commit 2adfd1e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/pvpc-hourly-pricing-card-editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export class PVPCHourlyPricingCardEditor extends LitElement {

return html`
<div class="card-config">
<div class="side-by-side">
<div class="side-by-side">
<paper-input
label="${this.ll('optionName')}"
.value="${this._name}"
Expand Down
2 changes: 1 addition & 1 deletion dist/pvpc-hourly-pricing-card.js
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ class PVPCHourlyPricingCard extends LitElement {
},
label: function (tooltipItems, data) {
let icon;
const index = tooltipItems.index != 24 ? tooltipItems.index : (tooltipItems[0].index = 23);
const index = tooltipItems.index != 24 ? tooltipItems.index : (tooltipItems.index = 23);

if (tooltipItems.datasetIndex === 0) {
if (index == minIndex) {
Expand Down

0 comments on commit 2adfd1e

Please sign in to comment.