diff --git a/src/public/app/widgets/type_widgets/options/ai_settings.ts b/src/public/app/widgets/type_widgets/options/ai_settings.ts index a97e95a0e..3af92168a 100644 --- a/src/public/app/widgets/type_widgets/options/ai_settings.ts +++ b/src/public/app/widgets/type_widgets/options/ai_settings.ts @@ -877,32 +877,35 @@ export default class AiSettingsWidget extends OptionsWidget { } } - // Use the application's note-list-item styling + // Use the application's native note-list-item styling without custom font styles const $item = $(`
- ${isPermanentlyFailed ?
- `Status: Permanently failed` :
- `Attempts: ${note.attempts}`}
-
- Last attempt: ${note.lastAttempt.substring(0, 19)}
-
- Error: ${(note.error || 'Unknown error').substring(0, 100)}${(note.error && note.error.length > 100) ? '...' : ''}
-