Skip to content

Commit 8ce6403

Browse files
committed
Merge branch 'main' into backend_security_report
2 parents 3743206 + 4f3ae40 commit 8ce6403

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

frontend/src/app/components/dashboard/dashboard.component.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,14 @@
9696
position: initial;
9797
}
9898

99+
.alerts app-alert:empty {
100+
display: none;
101+
}
102+
103+
.alerts:has(app-alert:only-child:empty) {
104+
margin: 0;
105+
}
106+
99107
.error-details {
100108
margin-top: 8px;
101109
}

frontend/src/app/services/tables.service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ export class TablesService {
533533
createAIthread(connectionID, tableName, message) {
534534
return this._http
535535
.post<any>(
536-
`/ai/v2/request/${connectionID}`,
536+
`/ai/v4/request/${connectionID}`,
537537
{ user_message: message },
538538
{
539539
responseType: 'text' as 'json',
@@ -563,7 +563,7 @@ export class TablesService {
563563
console.log('threadId', threadId);
564564
return this._http
565565
.post<any>(
566-
`/ai/v2/request/${connectionID}`,
566+
`/ai/v4/request/${connectionID}`,
567567
{ user_message: message },
568568
{
569569
responseType: 'text' as 'json',

0 commit comments

Comments
 (0)