+
@@ -219,23 +188,29 @@ export default defineComponent({
-
diff --git a/packages/editor-ui/src/components/executions/workflow/WorkflowExecutionsList.vue b/packages/editor-ui/src/components/executions/workflow/WorkflowExecutionsList.vue
index 2944b0dad..fda8e0848 100644
--- a/packages/editor-ui/src/components/executions/workflow/WorkflowExecutionsList.vue
+++ b/packages/editor-ui/src/components/executions/workflow/WorkflowExecutionsList.vue
@@ -2,18 +2,11 @@
import { computed, watch } from 'vue';
import { onBeforeRouteLeave, useRouter } from 'vue-router';
import WorkflowExecutionsSidebar from '@/components/executions/workflow/WorkflowExecutionsSidebar.vue';
-import {
- EnterpriseEditionFeature,
- EXECUTION_ANNOTATION_EXPERIMENT,
- MAIN_HEADER_TABS,
- VIEWS,
-} from '@/constants';
+import { MAIN_HEADER_TABS, VIEWS } from '@/constants';
import type { ExecutionFilterType, IWorkflowDb } from '@/Interface';
import type { ExecutionSummary } from 'n8n-workflow';
import { getNodeViewTab } from '@/utils/canvasUtils';
import { useWorkflowHelpers } from '@/composables/useWorkflowHelpers';
-import { usePostHog } from '@/stores/posthog.store';
-import { useSettingsStore } from '@/stores/settings.store';
const props = withDefaults(
defineProps<{
@@ -43,18 +36,6 @@ const emit = defineEmits<{
const workflowHelpers = useWorkflowHelpers({ router: useRouter() });
const router = useRouter();
-const posthogStore = usePostHog();
-const settingsStore = useSettingsStore();
-
-const isAdvancedExecutionFilterEnabled = computed(
- () => settingsStore.isEnterpriseFeatureEnabled[EnterpriseEditionFeature.AdvancedExecutionFilters],
-);
-const isAnnotationEnabled = computed(
- () =>
- isAdvancedExecutionFilterEnabled.value &&
- posthogStore.isFeatureEnabled(EXECUTION_ANNOTATION_EXPERIMENT),
-);
-
const temporaryExecution = computed(() =>
props.executions.find((execution) => execution.id === props.execution?.id)
? undefined
@@ -135,10 +116,6 @@ onBeforeRouteLeave(async (to, _, next) => {
@stop-execution="onStopExecution"
/>
-
diff --git a/packages/editor-ui/src/components/executions/workflow/WorkflowExecutionsPreview.vue b/packages/editor-ui/src/components/executions/workflow/WorkflowExecutionsPreview.vue
index 677046f4b..8fe995853 100644
--- a/packages/editor-ui/src/components/executions/workflow/WorkflowExecutionsPreview.vue
+++ b/packages/editor-ui/src/components/executions/workflow/WorkflowExecutionsPreview.vue
@@ -5,13 +5,20 @@ import { ElDropdown } from 'element-plus';
import { useExecutionDebugging } from '@/composables/useExecutionDebugging';
import { useMessage } from '@/composables/useMessage';
import WorkflowPreview from '@/components/WorkflowPreview.vue';
-import { MODAL_CONFIRM, VIEWS } from '@/constants';
+import {
+ EnterpriseEditionFeature,
+ EXECUTION_ANNOTATION_EXPERIMENT,
+ MODAL_CONFIRM,
+ VIEWS,
+} from '@/constants';
import type { ExecutionSummary } from 'n8n-workflow';
import type { IExecutionUIData } from '@/composables/useExecutionHelpers';
import { useExecutionHelpers } from '@/composables/useExecutionHelpers';
import { useWorkflowsStore } from '@/stores/workflows.store';
import { useI18n } from '@/composables/useI18n';
import { getResourcePermissions } from '@/permissions';
+import { usePostHog } from '@/stores/posthog.store';
+import { useSettingsStore } from '@/stores/settings.store';
type RetryDropdownRef = InstanceType