mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-10-10 12:06:38 +08:00
Feat [UI/UX Page] [Chats] Displaying Models
- [+] chore(chat.module.scss): update opacity value for .chat-message-action-date class - [+] feat(chat.tsx): update logic for displaying message date and model information in .chat-message-action-date element
This commit is contained in:
parent
5cf58d9446
commit
8a5b8d7f90
@ -383,7 +383,7 @@
|
|||||||
|
|
||||||
.chat-message-action-date {
|
.chat-message-action-date {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
opacity: 0.2;
|
opacity: 0.6;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
transition: all ease 0.6s;
|
transition: all ease 0.6s;
|
||||||
color: var(--black);
|
color: var(--black);
|
||||||
|
@ -1251,8 +1251,8 @@ function _Chat() {
|
|||||||
|
|
||||||
<div className={styles["chat-message-action-date"]}>
|
<div className={styles["chat-message-action-date"]}>
|
||||||
{isContext
|
{isContext
|
||||||
? Locale.Chat.IsContext
|
? `${Locale.Chat.IsContext} - ${Locale.Exporter.Model}: ${message.model || session.mask.modelConfig.model}`
|
||||||
: message.date.toLocaleString()}
|
: `${Locale.Exporter.Time}: ${message.date.toLocaleString()} - ${Locale.Exporter.Model}: ${message.model || session.mask.modelConfig.model}`}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user