We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce6190d commit 7fd42a0Copy full SHA for 7fd42a0
plugins/data-manager/frontend/public/javascripts/countly.views.js
@@ -1131,11 +1131,12 @@
1131
}
1132
if (doc.actionType === 'EVENT_MERGE' && doc.isRegexMerge === true) {
1133
doc.actionType = 'merge-regex';
1134
+ doc.eventTransformTargetRegex = doc.transformTarget[0];
1135
1136
else {
1137
doc.actionType = doc.actionType.split('_')[1].toLowerCase();
1138
- doc.isExistingEvent = 'true';
1139
+ doc.isExistingEvent = doc.isExistingEvent ? 'true' : 'false';
1140
// doc.tab;
1141
// delete doc.transformType;
1142
doc.name = countlyCommon.unescapeHtml(doc.name);
0 commit comments