Skip to content

Commit

Permalink
fix: added background color for sub-operation (#1095)
Browse files Browse the repository at this point in the history
Co-authored-by: Cody's Dad <[email protected]>
  • Loading branch information
Aryan4884 and AceTheCreator authored Oct 23, 2024
1 parent ccbfdb2 commit d7a3269
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion library/src/containers/Sidebar/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,13 @@ const OperationItem: React.FunctionComponent<OperationItemProps> = ({
config,
isAsyncAPIv2,
});
const bgColors = ['bg-red-600', 'bg-orange-600', 'bg-green-600'];
const bgColors = [
'bg-red-600',
'bg-orange-600',
'bg-green-600',
'bg-blue-600',
];

return (
<li key={`menu-operation-list-${operationHrefId}`}>
<a
Expand Down

0 comments on commit d7a3269

Please sign in to comment.