File tree 1 file changed +4
-4
lines changed
apps/webapp/app/components/runs/v3 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ export function SpanCodePathAccessory({
75
75
< span className = { cn ( "truncate" , "text-text-dimmed" ) } > { item . text } </ span >
76
76
{ index < accessory . items . length - 1 && (
77
77
< span className = "text-text-dimmed" >
78
- < ChevronRightIcon className = "h-4 w -4" />
78
+ < ChevronRightIcon className = "size -4" />
79
79
</ span >
80
80
) }
81
81
</ Fragment >
@@ -155,12 +155,12 @@ export function eventBorderClassName(event: RunEvent) {
155
155
156
156
switch ( event . level ) {
157
157
case "TRACE" : {
158
- return backgroundClassNameForVariant ( event . style . variant , event . isPartial ) ;
158
+ return borderClassNameForVariant ( event . style . variant , event . isPartial ) ;
159
159
}
160
160
case "LOG" :
161
161
case "INFO" :
162
162
case "DEBUG" : {
163
- return backgroundClassNameForVariant ( event . style . variant , event . isPartial ) ;
163
+ return borderClassNameForVariant ( event . style . variant , event . isPartial ) ;
164
164
}
165
165
case "WARN" : {
166
166
return "border-amber-400" ;
@@ -169,7 +169,7 @@ export function eventBorderClassName(event: RunEvent) {
169
169
return "border-error" ;
170
170
}
171
171
default : {
172
- return backgroundClassNameForVariant ( event . style . variant , event . isPartial ) ;
172
+ return borderClassNameForVariant ( event . style . variant , event . isPartial ) ;
173
173
}
174
174
}
175
175
}
You can’t perform that action at this time.
0 commit comments