Skip to content

Commit

Permalink
Added bgcolor for sub
Browse files Browse the repository at this point in the history
  • Loading branch information
Aryan4884 committed Oct 17, 2024
1 parent d87fd60 commit 4a58885
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion library/src/containers/Sidebar/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,12 @@ const OperationItem: React.FunctionComponent<OperationItemProps> = ({
config,
isAsyncAPIv2,
});
const bgColors = ['bg-red-600', 'bg-orange-600', 'bg-green-600'];
const bgColors = [
'bg-red-600',

Check failure on line 352 in library/src/containers/Sidebar/Sidebar.tsx

View workflow job for this annotation

GitHub Actions / Test NodeJS PR - ubuntu-latest

Delete `·`
'bg-orange-600',

Check failure on line 353 in library/src/containers/Sidebar/Sidebar.tsx

View workflow job for this annotation

GitHub Actions / Test NodeJS PR - ubuntu-latest

Delete `·`
'bg-green-600',
'bg-blue-600'

Check failure on line 355 in library/src/containers/Sidebar/Sidebar.tsx

View workflow job for this annotation

GitHub Actions / Test NodeJS PR - ubuntu-latest

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

0 comments on commit 4a58885

Please sign in to comment.