Skip to content

Commit 58ddc8e

Browse files
committed
maint(core dom): Fix signature of removeAttribute in show method.
1 parent 4a4cd49 commit 58ddc8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/dom.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ const show = (el) => {
7979
const val = el[DATA_STYLE_DISPLAY] || null;
8080
el.style.display = val;
8181
delete el[DATA_STYLE_DISPLAY];
82-
el.removeAttribute("hidden", "");
82+
el.removeAttribute("hidden");
8383
};
8484

8585
/**

0 commit comments

Comments
 (0)