content: string;
this.content = "There was an issue processing your request. Please try using the browser back button.";
.content{
white-space: pre-line;
}
<div class="card-body text-center">
<span class="content">
{{ content }}
</span>
</div>
The pre-line feature is intended to break at
tags, but it is showing the entire message with the tag included. I have tried using \n and
, but neither seem to be working.