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 834d075 commit d369d89Copy full SHA for d369d89
web_src/js/components/ContextPopup.vue
@@ -25,10 +25,9 @@ const body = computed(() => {
25
const root = ref<HTMLElement | null>(null);
26
27
onMounted(() => {
28
- root.value.addEventListener('ce-load-context-popup', (e: CustomEvent) => {
29
- const data: IssuePathInfo = e.detail;
+ root.value.addEventListener('ce-load-context-popup', (e: CustomEventInit<IssuePathInfo>) => {
30
if (!loading.value && issue.value === null) {
31
- load(data);
+ load(e.detail);
32
}
33
});
34
0 commit comments