Skip to content

Commit 871430d

Browse files
author
Ian Seabock (Centific Technologies Inc)
committed
use UI_LOGO if UI_CHAT_LOGO has no value
1 parent d2cb933 commit 871430d

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

frontend/src/pages/chat/Chat.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ const Chat = () => {
107107

108108
useEffect(() => {
109109
if (!appStateContext?.state.isLoading) {
110-
setLogo(ui?.logo || Contoso)
110+
setLogo(ui?.chat_logo || ui?.logo || Contoso)
111111
}
112112
}, [appStateContext?.state.isLoading])
113113

static/assets/index-9c158d2d.js renamed to static/assets/index-96b2bdb7.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

static/assets/index-9c158d2d.js.map renamed to static/assets/index-96b2bdb7.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

static/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<link rel="icon" type="image/x-icon" href="{{ favicon }}" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
77
<title>{{ title }}</title>
8-
<script type="module" crossorigin src="/assets/index-9c158d2d.js"></script>
8+
<script type="module" crossorigin src="/assets/index-96b2bdb7.js"></script>
99
<link rel="stylesheet" href="/assets/index-61492790.css">
1010
</head>
1111
<body>

0 commit comments

Comments
 (0)