Skip to content

Commit 8d279eb

Browse files
committed
fix: type-check
1 parent 081bcd5 commit 8d279eb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ui/src/views/trigger/component/ApplicationParameter.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@
144144
</template>
145145
<script setup lang="ts">
146146
import { computed, ref } from 'vue'
147-
import { FormInstance } from 'element-plus'
147+
import { type FormInstance } from 'element-plus'
148148
const applicationParameterFormRef = ref<FormInstance>()
149149
const props = defineProps<{ application?: any; modelValue: any; trigger: any }>()
150150
const emit = defineEmits(['update:modelValue'])

ui/src/views/trigger/component/ToolParameter.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
</template>
5757
<script setup lang="ts">
5858
import { computed, ref } from 'vue'
59-
import { FormInstance } from 'element-plus'
59+
import { type FormInstance } from 'element-plus'
6060
const toolParameterFormRef = ref<FormInstance>()
6161
const props = defineProps<{ tool?: any; modelValue: any; trigger: any }>()
6262
const emit = defineEmits(['update:modelValue'])

ui/src/views/trigger/component/TriggerDrawer.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ import triggerAPI from '@/api/trigger/trigger'
256256
import toolAPI from '@/api/tool/tool'
257257
import ToolParameter from './ToolParameter.vue'
258258
import ApplicationParameter from './ApplicationParameter.vue'
259-
import { FormInstance } from 'element-plus'
259+
import { type FormInstance } from 'element-plus'
260260
const emit = defineEmits(['refresh'])
261261
const triggerFormRef = ref<FormInstance>()
262262
const copy = () => {

0 commit comments

Comments
 (0)