Skip to content

Commit 4752ab3

Browse files
committed
add warning about problems in new chat view
1 parent ca12918 commit 4752ab3

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

src/client/components/ChatV2/ChatV2.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -435,6 +435,9 @@ export const ChatV2 = () => {
435435
ref={scrollRef}
436436
>
437437
{user?.preferences?.chatVersion !== 2 && <TestUseInfoV2 />}
438+
<Alert severity="warning" sx={{ mt: 2 }}>
439+
{t('chat:warning')}
440+
</Alert>
438441

439442
{course?.saveDiscussions && (
440443
<Paper variant="outlined" sx={{ padding: 2, mt: 2, display: 'flex', flexDirection: 'column', gap: 2 }}>

src/client/locales/en.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,8 @@
104104
"attachFile": "Attach file",
105105
"email": "The conversation will be sent to {{email}}",
106106
"cancelResponse": "Canceling responses is currently not supported",
107-
"searchResults": "Search results"
107+
"searchResults": "Search results",
108+
"warning": "The new chat view is experiencing problems and the response generation is very slow. The old chat view is working normally."
108109
},
109110
"settings": {
110111
"prompt": "Conversation prompt",
@@ -320,4 +321,4 @@
320321
"ok": "Ok",
321322
"openConfigurator": "Keyboard shortcut for sending a message"
322323
}
323-
}
324+
}

src/client/locales/fi.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,8 @@
104104
"attachFile": "Liitä tiedosto",
105105
"email": "Keskustelu lähetetään osoitteeseen {{email}}",
106106
"cancelResponse": "Vastausten keskeyttäminen on toistaiseksi pois käytöstä.",
107-
"searchResults": "Hakutulokset"
107+
"searchResults": "Hakutulokset",
108+
"warning": "Uudessa chattinäkymässä on tällä hetkellä ongelmia ja vastausten generointi on hidastunut. Vanha chattinäkymä toimii normaalisti."
108109
},
109110
"settings": {
110111
"prompt": "Keskustelun alustus",
@@ -320,4 +321,4 @@
320321
"ok": "Ok",
321322
"openConfigurator": "Viestin lähetyksen näppäinyhdistelmä"
322323
}
323-
}
324+
}

0 commit comments

Comments
 (0)