Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikriemer committed Sep 28, 2023
1 parent 6659ad5 commit 6988ba8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,8 @@ <h5>Trying to send test mail...</h5>
"
>
<div class="error-panel">
<h4>Could not send email</h4>
<h5>{{ sendingEmailErrorMessage }}</h5>
<h4>Could not send email</h4>
<h5>{{ sendingEmailErrorMessage }}</h5>
</div>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
*/

.error-panel {
margin-top: 10px;
padding: 10px;
border: 1px solid var(--color-warn);
background: var(--color-bg-1);
border-radius: 5px;
margin-top: 10px;
padding: 10px;
border: 1px solid var(--color-warn);
background: var(--color-bg-1);
border-radius: 5px;
}
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,7 @@ export class EmailConfigurationComponent implements OnInit {
error => {
this.sendingTestMailInProgress = false;
this.sendingTestMailSuccess = false;
this.sendingEmailErrorMessage =
`Error: ${error.error.localizedMessage} with cause ${error.error.cause.localizedMessage}`;
this.sendingEmailErrorMessage = `Error: ${error.error.localizedMessage} with cause ${error.error.cause.localizedMessage}`;
},
);
}
Expand Down

0 comments on commit 6988ba8

Please sign in to comment.