Skip to content

Commit

Permalink
fix: log internal html and css properties on debug
Browse files Browse the repository at this point in the history
  • Loading branch information
sergejcodes committed Aug 21, 2023
1 parent f6fefd5 commit 6f50c46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/minze/src/lib/minze-element.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1021,7 +1021,7 @@ export class MinzeElement extends HTMLElement {
watch: this.watch
}
],
['✨ template: %o', { css: this.css, html: this.html }]
['✨ template: %o', { css: this._css, html: this._html }]
].forEach(([msg, value]) => console.log(msg, value))

console.groupEnd()
Expand Down

0 comments on commit 6f50c46

Please sign in to comment.