Skip to content

Commit

Permalink
Show icon if no information is avilable on dkip, dmark or spf
Browse files Browse the repository at this point in the history
Signed-off-by: David Edler <[email protected]>
  • Loading branch information
edlerd committed Nov 18, 2024
1 parent 3ee9784 commit 18da535
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dev/View/User/MailBox/MessageView.js
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ export class MailMessageView extends AbstractViewRight {
dkimIcon: () => {
switch (this.dkimData()[0]) {
case 'none':
return '';
return '🚫︎';
case 'pass':
return '✔';
default:
Expand All @@ -215,7 +215,7 @@ export class MailMessageView extends AbstractViewRight {
spfIcon: () => {
switch (this.spfData()[0]) {
case 'none':
return '';
return '🚫︎';
case 'pass':
return '✔';
default:
Expand All @@ -231,7 +231,7 @@ export class MailMessageView extends AbstractViewRight {
dmarcIcon: () => {
switch (this.dmarcData()[0]) {
case 'none':
return '';
return '🚫︎';
case 'pass':
return '✔';
default:
Expand Down

0 comments on commit 18da535

Please sign in to comment.