diff --git a/src/components/Crontab/src/Crontab.vue b/src/components/Crontab/src/Crontab.vue index fe33bd5f..0e474fb2 100644 --- a/src/components/Crontab/src/Crontab.vue +++ b/src/components/Crontab/src/Crontab.vue @@ -6,7 +6,10 @@ interface shortcutsType { value: string } const props = defineProps({ - modelValue: { type: String, default: '* * * * * ?' }, + modelValue: { + type: String, + default: '* * * * * ?' + }, shortcuts: { type: Array as PropType, default: () => [] } }) const defaultValue = ref('') diff --git a/src/views/infra/job/form.vue b/src/views/infra/job/JobForm.vue similarity index 69% rename from src/views/infra/job/form.vue rename to src/views/infra/job/JobForm.vue index b50bcacb..585370bf 100644 --- a/src/views/infra/job/form.vue +++ b/src/views/infra/job/JobForm.vue @@ -1,5 +1,4 @@