Retry button in AI assistant failing to show

This commit is contained in:
Ricardo Espinoza 2024-12-02 09:07:58 -05:00
parent 8d71307da0
commit b265f549a9
No known key found for this signature in database
2 changed files with 2 additions and 1 deletions

View file

@ -237,7 +237,7 @@ async function onCopyButtonClick(content: string, e: MouseEvent) {
data-test-id="error-retry-button"
@click="() => message.retry?.()"
>
{{ t('generic.retry') }}
{{ t('assistantChat.retry') }}
</n8n-button>
</div>
<div v-else-if="message.type === 'code-diff'">

View file

@ -46,5 +46,6 @@ export default {
'assistantChat.inputPlaceholder': 'Enter your response...',
'assistantChat.copy': 'Copy',
'assistantChat.copied': 'Copied',
'assistantChat.retry': 'Retry',
'inlineAskAssistantButton.asked': 'Asked',
} as N8nLocale;