To allow enter key to work in textareas but prevent from submitting form, you could modify as follows:
In HTML template:
In the component's class in the .ts code behind:
handleEnterKeyPress(event) {
const tagName = event.target.tagName.toLowerCase();
if (tagName !== 'textarea') {
return false;
}
}