Skip to content

Commit

Permalink
Merge pull request #333 from devtron-labs/hotfix-v0.19.0
Browse files Browse the repository at this point in the history
fix: CollapsibleList - expand icon rotation fix
  • Loading branch information
RohitRaj011 authored Oct 4, 2024
2 parents 5c1b37b + 8867eae commit 3c1f897
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devtron-labs/devtron-fe-common-lib",
"version": "0.3.18",
"version": "0.4.0-patch-1",
"description": "Supporting common component library",
"type": "module",
"main": "dist/index.js",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const CollapsibleList = ({ config, onCollapseBtnClick }: CollapsibleListP
>
<ICExpand
className="icon-dim-20 fcn-6 dc__no-shrink cursor rotate"
style={{ ['--rotateBy' as string]: isExpanded ? '90deg' : '0deg' }}
style={{ ['--rotateBy' as string]: isExpanded ? '0deg' : '-90deg' }}
/>
<span className="flex-grow-1 dc__align-left dc__truncate">{header}</span>
</button>
Expand Down

0 comments on commit 3c1f897

Please sign in to comment.