Skip to content

Commit

Permalink
fix: missing attrchange for playlistid
Browse files Browse the repository at this point in the history
  • Loading branch information
justinribeiro committed Oct 5, 2021
1 parent ce3f919 commit f8a0646
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lite-youtube.ts
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,8 @@ export class LiteYTEmbed extends HTMLElement {
newVal: unknown
): void {
switch (name) {
case 'videoid': {
case 'videoid':
case 'playlistid': {
if (oldVal !== newVal) {
this.setupComponent();

Expand Down

0 comments on commit f8a0646

Please sign in to comment.