diff --git a/plugins/Openai/Views/admin/openai.blade.php b/plugins/Openai/Views/admin/openai.blade.php index 5c1db0c6..1ba22c65 100644 --- a/plugins/Openai/Views/admin/openai.blade.php +++ b/plugins/Openai/Views/admin/openai.blade.php @@ -134,7 +134,7 @@ let answer = marked.parse(data.response.choices[0].text); html += '
', - html += '
' + data.created_at + '
', + html += '
' + data.created_format + '
', html += '
{{ __('Openai::common.qa_q') }}:
' + question + '
', html += '
{{ __('Openai::common.qa_a') }}:
' + answer + '
' html += '
' @@ -180,7 +180,7 @@ let html = ''; data.data.forEach(function(item, index) { html += '
', - html += '
' + item.created_at + '
', + html += '
' + item.created_format + '
', html += '
{{ __('Openai::common.qa_q') }}:
' + item.question + '
', html += '
{{ __('Openai::common.qa_a') }}:
' + marked.parse(item.answer) + '
' html += '
'