We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8018dc commit 5b79924Copy full SHA for 5b79924
packages/ui/src/components/OutputDisplayFullscreen.vue
@@ -93,9 +93,9 @@ const internalVisible = computed({
93
})
94
95
const coreEnabledActions = computed(() => {
96
- // 全屏界面不需要对比功能(用于新增/编辑/预览场景)
97
- // 只保留 Markdown 渲染和原文显示
98
- return props.enabledActions?.filter(action => action !== 'fullscreen' && action !== 'diff')
+ // 全屏界面只需移除 fullscreen(避免递归全屏)
+ // diff 功能保留:当有 originalContent 时,OutputDisplayCore 会显示对比按钮
+ return props.enabledActions?.filter(action => action !== 'fullscreen')
99
100
101
const internalContent = ref(props.content)
0 commit comments