Skip to content

Commit

Permalink
fix: replace entities in total domain for fixing gisce/webclient#617
Browse files Browse the repository at this point in the history
  • Loading branch information
mguellsegarra committed Oct 18, 2023
2 parents 32910a1 + db4493d commit 139329f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Graph/GraphIndicator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export class GraphIndicator extends Graph {
this._icon = replaceEntities(this._icon);
}
this._suffix = element.attributes.suffix || null;
this._totalDomain = element.attributes.totalDomain || null;
this._totalDomain = replaceEntities(element.attributes.totalDomain) || null;
this._showPercent = parseBoolAttribute(element.attributes.showPercent);
}
}

0 comments on commit 139329f

Please sign in to comment.