Skip to content

Commit d7a3269

Browse files
Aryan4884AceTheCreator
andauthoredOct 23, 2024··
fix: added background color for sub-operation (#1095)
Co-authored-by: Cody's Dad <[email protected]>
1 parent ccbfdb2 commit d7a3269

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed
 

‎library/src/containers/Sidebar/Sidebar.tsx

+7-1
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,13 @@ const OperationItem: React.FunctionComponent<OperationItemProps> = ({
348348
config,
349349
isAsyncAPIv2,
350350
});
351-
const bgColors = ['bg-red-600', 'bg-orange-600', 'bg-green-600'];
351+
const bgColors = [
352+
'bg-red-600',
353+
'bg-orange-600',
354+
'bg-green-600',
355+
'bg-blue-600',
356+
];
357+
352358
return (
353359
<li key={`menu-operation-list-${operationHrefId}`}>
354360
<a

0 commit comments

Comments
 (0)
Please sign in to comment.