Skip to content

Commit 2e618f4

Browse files
authored
fix(OperationCell): increase font weight for operation name (#1825)
1 parent 33ab5de commit 2e618f4

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/containers/Tenant/Query/QueryResult/components/SimplifiedPlan/OperationCell.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,8 @@ export function OperationCell<TData>({row, depth = 0, params}: OperationCellProp
111111
<div className={block('operation-name-content')}>
112112
{/* wrapper to inline elements */}
113113
<div>
114-
{name}&nbsp;
114+
<span className={block('operation-name')}>{name}</span>
115+
&nbsp;
115116
<OperationParams params={operationParams} />
116117
</div>
117118
</div>

src/containers/Tenant/Query/QueryResult/components/SimplifiedPlan/SimplifiedPlan.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@
2323
&__operation-params {
2424
color: var(--g-color-text-secondary);
2525
}
26+
&__operation-name {
27+
font-weight: 500;
28+
}
2629
&__operation-name {
2730
position: relative;
2831

0 commit comments

Comments
 (0)