feat(ui): allow live switch between chat and monitor views
This commit is contained in:
parent
c96e99cd13
commit
fce6fb0eb8
@ -109,7 +109,7 @@
|
||||
/>
|
||||
|
||||
<ChatArea
|
||||
v-if="chatDisplayMode === 'chat'"
|
||||
v-show="chatDisplayMode === 'chat'"
|
||||
ref="messagesArea"
|
||||
:messages="messages"
|
||||
:icon-style="iconStyle"
|
||||
@ -125,7 +125,7 @@
|
||||
:format-search-topic="formatSearchTopic"
|
||||
:format-search-time="formatSearchTime"
|
||||
/>
|
||||
<VirtualMonitorSurface v-else />
|
||||
<VirtualMonitorSurface v-show="chatDisplayMode === 'monitor'" />
|
||||
|
||||
<div
|
||||
v-if="chatDisplayMode === 'chat'"
|
||||
|
||||
@ -294,10 +294,10 @@ const appOptions = {
|
||||
})
|
||||
,
|
||||
displayModeSwitchDisabled() {
|
||||
return this.composerBusy;
|
||||
return false;
|
||||
},
|
||||
displayLockEngaged() {
|
||||
return this.composerBusy;
|
||||
return false;
|
||||
},
|
||||
streamingUi() {
|
||||
return this.streamingMessage || this.hasPendingToolActions();
|
||||
|
||||
Loading…
Reference in New Issue
Block a user