mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
fix: type check error
This commit is contained in:
parent
e7c2c9710a
commit
259d1c872b
|
|
@ -38,7 +38,6 @@
|
|||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { el } from 'element-plus/es/locale'
|
||||
import { ref, watch } from 'vue'
|
||||
const props = defineProps({
|
||||
time: {
|
||||
|
|
|
|||
|
|
@ -412,7 +412,7 @@ const uploadFile = async (file: any, fileList: any) => {
|
|||
})
|
||||
}
|
||||
|
||||
const intervalId = ref<number | null>(null)
|
||||
const intervalId = ref<any | null>(null)
|
||||
const recorderTime = ref(0)
|
||||
const startRecorderTime = ref(false)
|
||||
const recorderLoading = ref(false)
|
||||
|
|
@ -527,7 +527,7 @@ const uploadRecording = async (audioBlob: Blob) => {
|
|||
// 自动发送
|
||||
if (props.applicationDetails.stt_autosend) {
|
||||
nextTick(() => {
|
||||
autoSendMessage()
|
||||
autoSendMessage()
|
||||
})
|
||||
} else {
|
||||
isMicrophone.value = false
|
||||
|
|
|
|||
Loading…
Reference in New Issue