|
@@ -732,6 +732,7 @@ function _Chat() {
|
|
|
const session = chatStore.currentSession();
|
|
const session = chatStore.currentSession();
|
|
|
const config = useAppConfig();
|
|
const config = useAppConfig();
|
|
|
const fontSize = config.fontSize;
|
|
const fontSize = config.fontSize;
|
|
|
|
|
+ const fontFamily = config.fontFamily;
|
|
|
|
|
|
|
|
const [showExport, setShowExport] = useState(false);
|
|
const [showExport, setShowExport] = useState(false);
|
|
|
|
|
|
|
@@ -1482,6 +1483,7 @@ function _Chat() {
|
|
|
setUserInput(getMessageTextContent(message));
|
|
setUserInput(getMessageTextContent(message));
|
|
|
}}
|
|
}}
|
|
|
fontSize={fontSize}
|
|
fontSize={fontSize}
|
|
|
|
|
+ fontFamily={fontFamily}
|
|
|
parentRef={scrollRef}
|
|
parentRef={scrollRef}
|
|
|
defaultShow={i >= messages.length - 6}
|
|
defaultShow={i >= messages.length - 6}
|
|
|
/>
|
|
/>
|
|
@@ -1576,6 +1578,7 @@ function _Chat() {
|
|
|
autoFocus={autoFocus}
|
|
autoFocus={autoFocus}
|
|
|
style={{
|
|
style={{
|
|
|
fontSize: config.fontSize,
|
|
fontSize: config.fontSize,
|
|
|
|
|
+ fontFamily: config.fontFamily,
|
|
|
}}
|
|
}}
|
|
|
/>
|
|
/>
|
|
|
{attachImages.length != 0 && (
|
|
{attachImages.length != 0 && (
|