mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 10:12:51 +00:00
fix: Paragraph card
This commit is contained in:
parent
e5397af848
commit
2fbeb4300f
|
|
@ -636,7 +636,6 @@ const props = defineProps<{
|
|||
appType?: string
|
||||
}>()
|
||||
|
||||
console.log(props)
|
||||
|
||||
const messageList = computed(() => {
|
||||
const chat_step = props.detail?.find(item => item.step_type == "chat_step")
|
||||
|
|
@ -689,7 +688,6 @@ const historyRecord = computed<any>(() => {
|
|||
}
|
||||
})
|
||||
const messages = messageList.value.filter((item: any) => item.role != "system")
|
||||
console.log(messages)
|
||||
|
||||
const currentChat = computed(() => {
|
||||
if (messageList.value) {
|
||||
|
|
|
|||
|
|
@ -139,7 +139,6 @@ const props = defineProps<{
|
|||
showMoveDown?: boolean
|
||||
}>()
|
||||
|
||||
console.log(props)
|
||||
|
||||
const route = useRoute()
|
||||
const {
|
||||
|
|
|
|||
|
|
@ -85,7 +85,7 @@
|
|||
<VueDraggable
|
||||
ref="el"
|
||||
v-model="paragraphDetail"
|
||||
:disabled="isBatch === true || shareDisabled"
|
||||
:disabled="isBatch === true || shareDisabled || !permissionPrecise.doc_edit(id)"
|
||||
handle=".handle"
|
||||
:animation="150"
|
||||
ghostClass="ghost"
|
||||
|
|
|
|||
Loading…
Reference in New Issue