diff --git a/services/web/frontend/extracted-translations.json b/services/web/frontend/extracted-translations.json index 6067638734..e06d18ca65 100644 --- a/services/web/frontend/extracted-translations.json +++ b/services/web/frontend/extracted-translations.json @@ -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": "", diff --git a/services/web/frontend/fonts/material-symbols/MaterialSymbolsRoundedUnfilledPartialSlice.woff2 b/services/web/frontend/fonts/material-symbols/MaterialSymbolsRoundedUnfilledPartialSlice.woff2 index bc2ec87d3a..93ab183f2f 100644 Binary files a/services/web/frontend/fonts/material-symbols/MaterialSymbolsRoundedUnfilledPartialSlice.woff2 and b/services/web/frontend/fonts/material-symbols/MaterialSymbolsRoundedUnfilledPartialSlice.woff2 differ diff --git a/services/web/frontend/fonts/material-symbols/unfilled-symbols.mjs b/services/web/frontend/fonts/material-symbols/unfilled-symbols.mjs index 68f0918301..e1803e654e 100644 --- a/services/web/frontend/fonts/material-symbols/unfilled-symbols.mjs +++ b/services/web/frontend/fonts/material-symbols/unfilled-symbols.mjs @@ -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', ]) diff --git a/services/web/frontend/js/features/ide-redesign/components/error-logs/log-entry.tsx b/services/web/frontend/js/features/ide-redesign/components/error-logs/log-entry.tsx index 0986343131..2051fe4552 100644 --- a/services/web/frontend/js/features/ide-redesign/components/error-logs/log-entry.tsx +++ b/services/web/frontend/js/features/ide-redesign/components/error-logs/log-entry.tsx @@ -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 && ( - <> -
- - - )} +
+
) } diff --git a/services/web/frontend/js/features/pdf-preview/components/pdf-log-entry-content.tsx b/services/web/frontend/js/features/pdf-preview/components/pdf-log-entry-content.tsx index ab5ce5dc29..17378f6c74 100644 --- a/services/web/frontend/js/features/pdf-preview/components/pdf-log-entry-content.tsx +++ b/services/web/frontend/js/features/pdf-preview/components/pdf-log-entry-content.tsx @@ -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 ( -
+
{formattedContent && (
{formattedContent}
)} diff --git a/services/web/locales/en.json b/services/web/locales/en.json index c00428bbe6..765b77ba7c 100644 --- a/services/web/locales/en.json +++ b/services/web/locales/en.json @@ -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 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?",