File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
src/views/chat/components/Message Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -124,7 +124,10 @@ async function handlePreviousResponse(next: number) {
124124 <AvatarComponent :image =" inversion" />
125125 </div >
126126 <div class =" overflow-hidden text-sm " :class =" [inversion ? 'items-end' : 'items-start']" >
127- <p class =" text-xs text-[#b4bbc4]" :class =" [inversion ? 'text-right' : 'text-left']" >
127+ <p v-if =" inversion" class =" text-xs text-[#b4bbc4]" :class =" [inversion ? 'text-right' : 'text-left']" >
128+ {{ new Date(dateTime as string).toLocaleString() }}
129+ </p >
130+ <p v-else class =" text-xs text-[#b4bbc4]" :class =" [inversion ? 'text-right' : 'text-left']" >
128131 <NSpace >
129132 {{ new Date(dateTime as string).toLocaleString() }}
130133 <NButtonGroup v-if =" !inversion && responseCount && responseCount > 1" >
You can’t perform that action at this time.
0 commit comments