ui: fix live tag
This commit is contained in:
parent
adf302bc34
commit
9d7c54554e
1 changed files with 1 additions and 1 deletions
|
|
@ -37,7 +37,7 @@ function Controls(props: any) {
|
|||
const session = sessionStore.current;
|
||||
const fetchAssistSessions = sessionStore.fetchLiveSessions;
|
||||
const totalAssistSessions = sessionStore.totalLiveSessions;
|
||||
const closedLive = !!sessionStore.errorStack || !!sessionStore.current;
|
||||
const closedLive = !!sessionStore.errorStack?.length || !sessionStore.current;
|
||||
|
||||
const onKeyDown = (e: any) => {
|
||||
if (
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue