We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cdbbe1 commit cb3678dCopy full SHA for cb3678d
frontend/express/public/javascripts/countly/vue/components/helpers.js
@@ -746,6 +746,16 @@
746
});
747
self.isLoading = false;
748
resolve(preparedEventList);
749
+ }, function() {
750
+ const events = countlyEvent.getEvents();
751
+ preparedEventList[1].options = events.map(function(event) {
752
+ return {label: countlyCommon.unescapeHtml(event.name), value: event.key};
753
+ });
754
+ preparedEventList = preparedEventList.filter(function(evt) {
755
+ return !(self.blacklistedEvents.includes(evt.name));
756
757
+ self.isLoading = false;
758
+ resolve(preparedEventList);
759
760
}
761
0 commit comments