79778311

Date: 2025-09-29 15:41:06
Score: 1
Natty:
Report link

Changing the order of the imports fixes it. Old:

<script src="MyParentElement.js" type="module"></script>
<script src="MyChildElement1.js" type="module"></script>
<script src="MyChildElement2.js" type="module"></script>

New:

<script src="MyChildElement1.js" type="module"></script>
<script src="MyChildElement2.js" type="module"></script>
<script src="MyParentElement.js" type="module"></script>
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: luckycoder