Skip to content

Commit 03e2823

Browse files
committed
Update frontend
1 parent 3fb2fca commit 03e2823

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

app/frontend/src/components/AnalysisPanel/AgentPlan.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export const AgentPlan: React.FC<Props> = ({ query_plan, description }) => {
5454

5555
<div className={styles.header}>Subqueries</div>
5656
{queries.length > 0 && (
57-
<table>
57+
<table className={styles.subqueriesTable}>
5858
<thead>
5959
<tr>
6060
<th>Subquery</th>

app/frontend/src/components/AnalysisPanel/AnalysisPanel.module.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,3 +141,10 @@
141141
background-color: #424242;
142142
color: #ffffff;
143143
}
144+
145+
.subqueriesTable,
146+
.subqueriesTable th,
147+
.subqueriesTable td,
148+
.subqueriesTable tr {
149+
background: #fff;
150+
}

0 commit comments

Comments
 (0)