Skip to content

Commit 3c1f897

Browse files
authored
Merge pull request #333 from devtron-labs/hotfix-v0.19.0
fix: CollapsibleList - expand icon rotation fix
2 parents 5c1b37b + 8867eae commit 3c1f897

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@devtron-labs/devtron-fe-common-lib",
3-
"version": "0.3.18",
3+
"version": "0.4.0-patch-1",
44
"description": "Supporting common component library",
55
"type": "module",
66
"main": "dist/index.js",

src/Shared/Components/CollapsibleList/CollapsibleList.component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export const CollapsibleList = ({ config, onCollapseBtnClick }: CollapsibleListP
2929
>
3030
<ICExpand
3131
className="icon-dim-20 fcn-6 dc__no-shrink cursor rotate"
32-
style={{ ['--rotateBy' as string]: isExpanded ? '90deg' : '0deg' }}
32+
style={{ ['--rotateBy' as string]: isExpanded ? '0deg' : '-90deg' }}
3333
/>
3434
<span className="flex-grow-1 dc__align-left dc__truncate">{header}</span>
3535
</button>

0 commit comments

Comments
 (0)