


Commenting out this block of code here makes the avatar disappear and this issues goes away. However, this is just a work-around of not setting the module_name element and we should instead not have the module_name element, but this requires restructuring the code.
} else {
e.classList.add("module")
const module_name = this.module_name()
- module_name.textContent = comment.module
+ // module_name.textContent = comment.module
e.prepend(module_name)
}
Commenting out this block of code here makes the avatar disappear and this issues goes away. However, this is just a work-around of not setting the
module_nameelement and we should instead not have themodule_nameelement, but this requires restructuring the code.} else { e.classList.add("module") const module_name = this.module_name() - module_name.textContent = comment.module + // module_name.textContent = comment.module e.prepend(module_name) }