Skip to content

Commit 996fc9f

Browse files
added border radius to wfo tree and empty PB card placeholder (#664)
* added border radius to wfo tree and empty PB card placeholder * Create shaggy-peaches-sit.md * changeset prettier fix
1 parent 57b0c13 commit 996fc9f

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

.changeset/shaggy-peaches-sit.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@orchestrator-ui/orchestrator-ui-components': patch
3+
---
4+
5+
added border radius to wfo tree and empty PB card placeholder

packages/orchestrator-ui-components/src/components/WfoSubscription/WfoSubscriptionDetailTree.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ export const WfoSubscriptionDetailTree = ({
131131
style={{
132132
marginTop: 15,
133133
minHeight: 600,
134+
borderRadius: 6,
134135
}}
135136
size="m"
136137
title={t('noProductBlockSelected')}

packages/orchestrator-ui-components/src/components/WfoTree/WfoTreeNode.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ export const WfoTreeNode: FC<WfoTreeNodeProps> = ({
7272
label={item.label}
7373
isActive={selected}
7474
color={'primary'}
75+
style={{ borderRadius: 6 }}
7576
extraAction={{
7677
color: 'primary',
7778
onClick: () => toggleSelectedId(item.id),
@@ -86,6 +87,7 @@ export const WfoTreeNode: FC<WfoTreeNodeProps> = ({
8687
onClick={() => toggleSelectedId(item.id)}
8788
label={item.label}
8889
isActive={selected}
90+
style={{ borderRadius: 6 }}
8991
/>
9092
)}
9193
</EuiFlexItem>

0 commit comments

Comments
 (0)