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 ff5a44692d
commit 41cf7ddfb2
1 changed files with 1 additions and 2 deletions

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