mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-10 15:08:28 +03:00
Merge Objects prototype extensions
This commit is contained in:
parent
0647b5201f
commit
f2d194947d
26 changed files with 108 additions and 127 deletions
|
|
@ -16,7 +16,6 @@ import {
|
|||
import { $htmlCL, leftPanelDisabled, keyScopeReal, useKeyboardShortcuts, moveAction } from 'Common/Globals';
|
||||
|
||||
import {
|
||||
isNonEmptyArray,
|
||||
inFocus,
|
||||
removeSelection,
|
||||
removeInFocus,
|
||||
|
|
@ -213,7 +212,7 @@ class MessageViewMailBoxUserView extends AbstractViewNext {
|
|||
|
||||
this.viewFromDkimStatusTitle = ko.computed(() => {
|
||||
const status = this.viewFromDkimData();
|
||||
if (isNonEmptyArray(status)) {
|
||||
if (Array.isNotEmpty(status)) {
|
||||
if (status[0] && status[1]) {
|
||||
return status[1];
|
||||
} else if (status[0]) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue