From cab61f519e1fabfc634c54e994234396cf4d0d1b Mon Sep 17 00:00:00 2001 From: juanmont Date: Fri, 21 Dec 2018 09:43:24 +0100 Subject: [PATCH] Fixed bug with clusters button --- src/sunstone/public/app/utils/dialogs/clusters.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sunstone/public/app/utils/dialogs/clusters.js b/src/sunstone/public/app/utils/dialogs/clusters.js index 51f495e235..097084c5d0 100644 --- a/src/sunstone/public/app/utils/dialogs/clusters.js +++ b/src/sunstone/public/app/utils/dialogs/clusters.js @@ -152,9 +152,9 @@ define(function(require) { } else { clusters = this.element.TEMPLATE.CLUSTERS; - clusters = clusters.split(","); if (clusters !== undefined ) { + clusters = clusters.split(","); if ($.isArray(clusters)) { this.originalClusterIds = clusters; } else {