From 1be936fd8c4f260e06b7ba16574d331c3595a45e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E0=A4=95=E0=A4=BE=E0=A4=B0=E0=A4=A4=E0=A5=8B=E0=A4=AB?= =?UTF-8?q?=E0=A5=8D=E0=A4=AB=E0=A5=87=E0=A4=B2=E0=A4=B8=E0=A5=8D=E0=A4=95?= =?UTF-8?q?=E0=A5=8D=E0=A4=B0=E0=A4=BF=E0=A4=AA=E0=A5=8D=E0=A4=9F=E2=84=A2?= Date: Wed, 25 Jan 2023 11:18:50 +0100 Subject: [PATCH] fix(editor): Fix the element-ui imports in SettingsLdapView (no-changelog) (#5245) --- packages/editor-ui/src/views/SettingsLdapView.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/editor-ui/src/views/SettingsLdapView.vue b/packages/editor-ui/src/views/SettingsLdapView.vue index a11b8e121..541872cc4 100644 --- a/packages/editor-ui/src/views/SettingsLdapView.vue +++ b/packages/editor-ui/src/views/SettingsLdapView.vue @@ -161,7 +161,7 @@ import Vue from 'vue'; import mixins from 'vue-typed-mixins'; import humanizeDuration from 'humanize-duration'; -import { rowCallbackParams, cellCallbackParams, ElTable } from 'element-ui/types/table'; +import type { rowCallbackParams, cellCallbackParams } from 'element-ui/types/table'; import { capitalizeFirstLetter } from '@/utils'; import InfiniteLoading from 'vue-infinite-loading'; import { mapStores } from 'pinia'; @@ -169,7 +169,6 @@ import { useUsersStore } from '@/stores/users'; import { useSettingsStore } from '@/stores/settings'; import { getLdapSynchronizations } from '@/api/ldap'; import { N8N_CONTACT_EMAIL, N8N_SALES_EMAIL } from '@/constants'; -import { ElTableColumn } from 'element-ui/types/table-column'; type FormValues = { loginEnabled: boolean;