aboutsummaryrefslogtreecommitdiffstats
path: root/src/js/utils/elements.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/js/utils/elements.js')
-rw-r--r--src/js/utils/elements.js5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/js/utils/elements.js b/src/js/utils/elements.js
index 55866367..39b944d2 100644
--- a/src/js/utils/elements.js
+++ b/src/js/utils/elements.js
@@ -42,10 +42,7 @@ export function setAttributes(element, attributes) {
return;
}
- Object.entries(attributes).forEach(([
- key,
- value,
- ]) => {
+ Object.entries(attributes).forEach(([key, value]) => {
element.setAttribute(key, value);
});
}