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 c6b16e7 commit 8356bbaCopy full SHA for 8356bba
frontend/src/views/dashboard/editor/ChatChartSelection.vue
@@ -99,7 +99,12 @@ function adaptorChartInfoList(chatInfo: ChatInfo) {
99
chartInfoList.value = []
100
if (chatInfo && chatInfo.records) {
101
chatInfo.records.forEach((record: any) => {
102
- if (record?.chart && record.data) {
+ if (
103
+ (record?.analysis_record_id === undefined || record?.analysis_record_id === null) &&
104
+ (record?.predict_record_id === undefined || record?.predict_record_id === null) &&
105
+ record?.chart &&
106
+ record.data
107
+ ) {
108
const recordeInfo = { id: chatInfo.id + '_' + record.id, data: record.data, chart: {} }
109
const chartBaseInfo = JSON.parse(record.chart)
110
recordeInfo['chart'] = {
0 commit comments