1
0
Fork 0
mirror of synced 2024-09-08 13:41:09 +12:00

Use the new DOM ID method of determining the correct DOM node for a component

This commit is contained in:
Andrew Kingston 2022-11-23 12:32:40 +00:00
parent 42d2a71395
commit 9ec58ca401

View file

@ -36,8 +36,7 @@
// Util to get the inner DOM node by a component ID
const getDOMNode = id => {
const component = document.getElementsByClassName(id)[0]
return [...component.children][0]
return document.getElementsByClassName(`${id}-dom`)[0]
}
// Util to calculate the variance of a set of data