mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-09-09 22:54:18 +08:00
Show icon if no information is avilable on dkip, dmark or spf
Signed-off-by: David Edler <david.edler@canonical.com>
This commit is contained in:
parent
3ee978484a
commit
18da535643
1 changed files with 3 additions and 3 deletions
|
@ -199,7 +199,7 @@ export class MailMessageView extends AbstractViewRight {
|
|||
dkimIcon: () => {
|
||||
switch (this.dkimData()[0]) {
|
||||
case 'none':
|
||||
return '';
|
||||
return '🚫︎';
|
||||
case 'pass':
|
||||
return '✔';
|
||||
default:
|
||||
|
@ -215,7 +215,7 @@ export class MailMessageView extends AbstractViewRight {
|
|||
spfIcon: () => {
|
||||
switch (this.spfData()[0]) {
|
||||
case 'none':
|
||||
return '';
|
||||
return '🚫︎';
|
||||
case 'pass':
|
||||
return '✔';
|
||||
default:
|
||||
|
@ -231,7 +231,7 @@ export class MailMessageView extends AbstractViewRight {
|
|||
dmarcIcon: () => {
|
||||
switch (this.dmarcData()[0]) {
|
||||
case 'none':
|
||||
return '';
|
||||
return '🚫︎';
|
||||
case 'pass':
|
||||
return '✔';
|
||||
default:
|
||||
|
|
Loading…
Add table
Reference in a new issue