We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e3982c commit 24538f5Copy full SHA for 24538f5
src/class/HTMLCodeBlockElement.ts
@@ -213,6 +213,7 @@ export default class HTMLCodeBlockElement extends HTMLElement {
213
this.#label === value ||
214
(
215
this.#label === '' &&
216
+ this.getAttribute('label') === null &&
217
value === null
218
)
219
) {
@@ -243,6 +244,7 @@ export default class HTMLCodeBlockElement extends HTMLElement {
243
244
this.#language === value ||
245
246
this.#language === '' &&
247
+ this.getAttribute('language') === null &&
248
249
250
0 commit comments