changes
This commit is contained in:
@@ -165,8 +165,8 @@
|
||||
|
||||
<script setup>
|
||||
import { capitalize } from "es-toolkit";
|
||||
import EmailForm1 from "./forms/EmailForm1.vue";
|
||||
import Template1 from "~/components/marketing/email/Template1.vue";
|
||||
import EmailForm from "./forms/EmailForm.vue";
|
||||
import Template from "~/components/marketing/email/Template.vue";
|
||||
import MappingConfigurator from "~/components/marketing/email/MappingConfigurator.vue";
|
||||
import JobConfigurator from "~/components/marketing/email/JobConfigurator.vue";
|
||||
|
||||
@@ -225,11 +225,11 @@ const templateProps = computed(() => ({
|
||||
}));
|
||||
|
||||
const currentFormComponent = computed(() => {
|
||||
return markRaw(EmailForm1);
|
||||
return markRaw(EmailForm);
|
||||
});
|
||||
|
||||
const currentTemplateComponent = computed(() => {
|
||||
return markRaw(Template1);
|
||||
return markRaw(Template);
|
||||
});
|
||||
|
||||
// Methods
|
||||
|
||||
Reference in New Issue
Block a user