Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions backend/apps/db/db_sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,11 +271,10 @@ def get_field_sql(ds: CoreDatasource, conf: DatasourceConf, table_name: str = No
c.DATA_TYPE AS "DATA_TYPE",
COALESCE(com.COMMENTS, '') AS "COMMENTS"
FROM
ALL_TAB_COLS c
ALL_TAB_COLUMNS c
LEFT JOIN
ALL_COL_COMMENTS com
ON c.OWNER = com.OWNER
AND c.TABLE_NAME = com.TABLE_NAME
ON c.TABLE_NAME = com.TABLE_NAME
AND c.COLUMN_NAME = com.COLUMN_NAME
WHERE
c.OWNER = :param1
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/views/chat/chat-block/ChartBlock.vue
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,8 @@ const showLabel = ref(false)
function addToDashboard() {
const recordeInfo = {
id: '1-1',
sourceRecordId: props.message?.record.id,
sourceChatId: props.message?.record.chat_id,
data: {
data: data.value,
},
Expand Down
Loading