We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10eb41f commit 7c2b064Copy full SHA for 7c2b064
frontend/src/views/chat/chat-block/ChartBlock.vue
@@ -193,8 +193,9 @@ function addToDashboard() {
193
<template>
194
<div
195
v-if="
196
- (!isPredict && (message?.record?.sql || message?.record?.chart)) ||
197
- (isPredict && message?.record?.chart && data.length > 0)
+ !message.isTyping &&
+ ((!isPredict && (message?.record?.sql || message?.record?.chart)) ||
198
+ (isPredict && message?.record?.chart && data.length > 0))
199
"
200
class="chart-component-container"
201
:class="{ 'full-screen': enlarge }"
0 commit comments