File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
ui/src/views/trigger/component Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 144144</template >
145145<script setup lang="ts">
146146import { computed , ref } from ' vue'
147- import { FormInstance } from ' element-plus'
147+ import { type FormInstance } from ' element-plus'
148148const applicationParameterFormRef = ref <FormInstance >()
149149const props = defineProps <{ application? : any ; modelValue: any ; trigger: any }>()
150150const emit = defineEmits ([' update:modelValue' ])
Original file line number Diff line number Diff line change 5656</template >
5757<script setup lang="ts">
5858import { computed , ref } from ' vue'
59- import { FormInstance } from ' element-plus'
59+ import { type FormInstance } from ' element-plus'
6060const toolParameterFormRef = ref <FormInstance >()
6161const props = defineProps <{ tool? : any ; modelValue: any ; trigger: any }>()
6262const emit = defineEmits ([' update:modelValue' ])
Original file line number Diff line number Diff line change @@ -256,7 +256,7 @@ import triggerAPI from '@/api/trigger/trigger'
256256import toolAPI from ' @/api/tool/tool'
257257import ToolParameter from ' ./ToolParameter.vue'
258258import ApplicationParameter from ' ./ApplicationParameter.vue'
259- import { FormInstance } from ' element-plus'
259+ import { type FormInstance } from ' element-plus'
260260const emit = defineEmits ([' refresh' ])
261261const triggerFormRef = ref <FormInstance >()
262262const copy = () => {
You can’t perform that action at this time.
0 commit comments