This is an automated email from the ASF dual-hosted git repository.
humbedooh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git
The following commit(s) were added to refs/heads/master by this push:
new 4cdb6a4 fix typo
4cdb6a4 is described below
commit 4cdb6a4ff9d70938a88ac31158a4ce1b29ca4f19
Author: Daniel Gruno <[email protected]>
AuthorDate: Wed Nov 17 18:58:30 2021 +0100
fix typo
---
webui/js/source/base-js-extensions.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/webui/js/source/base-js-extensions.js
b/webui/js/source/base-js-extensions.js
index 0d83d52..93f54ca 100644
--- a/webui/js/source/base-js-extensions.js
+++ b/webui/js/source/base-js-extensions.js
@@ -117,7 +117,7 @@ Date.prototype.ISOBare = function() {
/* isArray: function to detect if an object is an array */
-function isArrray(value) {
+function isArray(value) {
return value && typeof value === 'object' && value instanceof Array &&
typeof value.length === 'number' && typeof value.splice === 'function' &&
!(value.propertyIsEnumerable('length'));
};