mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-11 15:10:48 +02:00
Merge pull request #26162 from overleaf/dp-error-logs-ai-2
Update error logs AI UI GitOrigin-RevId: 6f9783090797e6d7d2fe01178f6945aa364ff4ac
This commit is contained in:
@@ -1693,6 +1693,7 @@
|
||||
"suggest_a_different_fix": "",
|
||||
"suggest_fix": "",
|
||||
"suggested": "",
|
||||
"suggested_code": "",
|
||||
"suggested_fix_for_error_in_path": "",
|
||||
"suggestion_applied": "",
|
||||
"suggests_code_completions_while_typing": "",
|
||||
@@ -2075,6 +2076,7 @@
|
||||
"were_performing_maintenance": "",
|
||||
"were_redesigning_our_editor_to_make_it_easier_to_use": "",
|
||||
"were_reducing_compile_timeout": "",
|
||||
"what_did_you_find_most_helpful": "",
|
||||
"what_do_you_need_help_with": "",
|
||||
"what_does_this_mean": "",
|
||||
"what_does_this_mean_for_you": "",
|
||||
|
||||
BIN
Binary file not shown.
@@ -8,6 +8,7 @@ export default /** @type {const} */ ([
|
||||
'book_5',
|
||||
'brush',
|
||||
'code',
|
||||
'content_copy',
|
||||
'create_new_folder',
|
||||
'delete',
|
||||
'description',
|
||||
@@ -26,6 +27,8 @@ export default /** @type {const} */ ([
|
||||
'settings',
|
||||
'space_dashboard',
|
||||
'table_chart',
|
||||
'thumb_down',
|
||||
'thumb_up',
|
||||
'upload_file',
|
||||
'web_asset',
|
||||
])
|
||||
|
||||
+13
-14
@@ -8,6 +8,7 @@ import {
|
||||
} from '@/features/pdf-preview/util/types'
|
||||
import LogEntryHeader from './log-entry-header'
|
||||
import PdfLogEntryContent from '@/features/pdf-preview/components/pdf-log-entry-content'
|
||||
import classNames from 'classnames'
|
||||
|
||||
function LogEntry({
|
||||
ruleId,
|
||||
@@ -88,20 +89,18 @@ function LogEntry({
|
||||
id={id}
|
||||
logEntry={logEntry}
|
||||
/>
|
||||
|
||||
{!collapsed && (
|
||||
<>
|
||||
<div className="horizontal-divider" />
|
||||
<PdfLogEntryContent
|
||||
alwaysExpandRawContent={alwaysExpandRawContent}
|
||||
rawContent={rawContent}
|
||||
formattedContent={formattedContent}
|
||||
extraInfoURL={extraInfoURL}
|
||||
index={index}
|
||||
logEntry={logEntry}
|
||||
/>
|
||||
</>
|
||||
)}
|
||||
<div
|
||||
className={classNames('horizontal-divider', { hidden: collapsed })}
|
||||
/>
|
||||
<PdfLogEntryContent
|
||||
className={classNames({ hidden: collapsed })}
|
||||
alwaysExpandRawContent={alwaysExpandRawContent}
|
||||
rawContent={rawContent}
|
||||
formattedContent={formattedContent}
|
||||
extraInfoURL={extraInfoURL}
|
||||
index={index}
|
||||
logEntry={logEntry}
|
||||
/>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@ import PdfLogEntryRawContent from './pdf-log-entry-raw-content'
|
||||
import importOverleafModules from '../../../../macros/import-overleaf-module.macro'
|
||||
import { LogEntry } from '../util/types'
|
||||
import { ElementType } from 'react'
|
||||
import classNames from 'classnames'
|
||||
|
||||
const pdfLogEntryComponents = importOverleafModules(
|
||||
'pdfLogEntryComponents'
|
||||
@@ -18,6 +19,7 @@ export default function PdfLogEntryContent({
|
||||
index,
|
||||
logEntry,
|
||||
alwaysExpandRawContent = false,
|
||||
className,
|
||||
}: {
|
||||
rawContent?: string
|
||||
formattedContent?: React.ReactNode
|
||||
@@ -25,11 +27,12 @@ export default function PdfLogEntryContent({
|
||||
index?: number
|
||||
logEntry?: LogEntry
|
||||
alwaysExpandRawContent?: boolean
|
||||
className?: string
|
||||
}) {
|
||||
const { t } = useTranslation()
|
||||
|
||||
return (
|
||||
<div className="log-entry-content">
|
||||
<div className={classNames('log-entry-content', className)}>
|
||||
{formattedContent && (
|
||||
<div className="log-entry-formatted-content">{formattedContent}</div>
|
||||
)}
|
||||
|
||||
@@ -2193,6 +2193,7 @@
|
||||
"suggest_a_different_fix": "Suggest a different fix",
|
||||
"suggest_fix": "Suggest fix",
|
||||
"suggested": "Suggested",
|
||||
"suggested_code": "Suggested code",
|
||||
"suggested_fix_for_error_in_path": "Suggested fix for error in __path__",
|
||||
"suggestion": "Suggestion",
|
||||
"suggestion_applied": "Suggestion applied",
|
||||
@@ -2628,6 +2629,7 @@
|
||||
"were_performing_maintenance": "We’re performing maintenance on Overleaf and you need to wait a moment. Sorry for any inconvenience. The editor will refresh automatically in __seconds__ seconds.",
|
||||
"were_redesigning_our_editor_to_make_it_easier_to_use": "We’re redesigning our editor to make it easier to use and ensure it’s future ready. Try it out and give us your feedback to help us get this right. (Some features are still in the works, so you can switch back at any time.)",
|
||||
"were_reducing_compile_timeout": "We’re in the process of <0>reducing the compile timeout limit</0> on our free plan, which may affect your project in future.",
|
||||
"what_did_you_find_most_helpful": "What did you find most helpful?",
|
||||
"what_do_you_need": "What do you need?",
|
||||
"what_do_you_need_help_with": "What do you need help with?",
|
||||
"what_does_this_mean": "What does this mean?",
|
||||
|
||||
Reference in New Issue
Block a user