diff --git a/src/pages/ExportPage.scss b/src/pages/ExportPage.scss index a7d9683..9c6c756 100644 --- a/src/pages/ExportPage.scss +++ b/src/pages/ExportPage.scss @@ -2861,6 +2861,7 @@ .dialog-format-select { position: relative; min-width: 220px; + margin-left: auto; } .dialog-format-dropdown { diff --git a/src/pages/ExportPage.tsx b/src/pages/ExportPage.tsx index 5d243a8..6cb128b 100644 --- a/src/pages/ExportPage.tsx +++ b/src/pages/ExportPage.tsx @@ -4917,7 +4917,7 @@ function ExportPage() { const isSessionScopeDialog = exportDialog.scope === 'single' || exportDialog.scope === 'multi' const isContentScopeDialog = exportDialog.scope === 'content' const isContentTextDialog = isContentScopeDialog && exportDialog.contentType === 'text' - const useCollapsedSessionFormatSelector = isSessionScopeDialog + const useCollapsedSessionFormatSelector = isSessionScopeDialog || isContentTextDialog const shouldShowFormatSection = !isContentScopeDialog || isContentTextDialog const shouldShowMediaSection = !isContentScopeDialog const avatarExportStatusLabel = options.exportAvatars ? '已开启聊天消息导出带头像' : '已关闭聊天消息导出带头像'