diff --git a/frontend/src/components/Settings/LeadSyncing/LeadSyncSources.vue b/frontend/src/components/Settings/LeadSyncing/LeadSyncSources.vue index 80c10f25..761c27ea 100644 --- a/frontend/src/components/Settings/LeadSyncing/LeadSyncSources.vue +++ b/frontend/src/components/Settings/LeadSyncing/LeadSyncSources.vue @@ -4,7 +4,7 @@

- {{ __('Lead Sources') }} + {{ __('Lead sources') }}

{{ @@ -45,7 +45,7 @@

- {{ __('No email sources found') }} + {{ __('No lead sources found') }}
@@ -165,7 +165,6 @@ const emit = defineEmits(["updateStep"]); const sources = inject("sources"); const search = ref(""); -// const currentDoctype = ref('All') const confirmDelete = ref(false); const sourcesList = computed(() => { @@ -177,11 +176,6 @@ const sourcesList = computed(() => { source.subject.toLowerCase().includes(search.value.toLowerCase()), ); } - // if (currentDoctype.value !== 'All') { - // list = list.filter( - // (template) => source.reference_doctype === currentDoctype.value, - // ) - // } return list; });