frontend: fix div ids

This commit is contained in:
Mose Müller
2023-10-17 11:42:13 +02:00
parent c1f0b7b74d
commit 5ad15c1cae
3 changed files with 4 additions and 4 deletions

View File

@ -22,7 +22,7 @@ export const ListComponent = React.memo((props: ListComponentProps) => {
}, [props]);
return (
<div className={'listComponent'} id={parentPath.concat(name)}>
<div className={'listComponent'} id={parentPath.concat('.' + name)}>
{process.env.NODE_ENV === 'development' && (
<p>Render count: {renderCount.current}</p>
)}