We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7068590 commit 12b61e9Copy full SHA for 12b61e9
plugins/data_migration/frontend/public/javascripts/countly.views.js
@@ -23,6 +23,12 @@
23
countlyDataMigration.loadImportList()
24
.then(function(res) {
25
if (typeof res.result === "object") {
26
+ var aa = Object.entries(res.result);
27
+ aa[0].forEach(function(element) {
28
+ if (typeof element === "object") {
29
+ res.result = [element];
30
+ }
31
+ });
32
self.list = res.result;
33
}
34
else if (typeof res.result === "string") {
0 commit comments