Skip to content

Commit 34809f2

Browse files
authored
Merge pull request #678 from ProgressPlanner/filip/fix-branding-id
Fix branding id in badge progress element
2 parents ef6170f + 6aa078a commit 34809f2

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

assets/js/web-components/prpl-badge-progress-bar.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,12 @@ customElements.define(
1717
* Observed attributes, defined the attributes that will trigger the attributeChangedCallback.
1818
*/
1919
static get observedAttributes() {
20-
return [ 'data-badge-id', 'data-points', 'data-max-points' ];
20+
return [
21+
'data-badge-id',
22+
'data-points',
23+
'data-max-points',
24+
'data-branding-id',
25+
];
2126
}
2227

2328
/**

0 commit comments

Comments
 (0)