Skip to content

Commit ff23eb6

Browse files
committed
fix: border radius in key value list
1 parent 1d9465f commit ff23eb6

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/Shared/Components/KeyValueList/KeyValueList.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,19 @@ const KeyValueItem = ({
6868
value={itemKey}
6969
disabled={isDisabled}
7070
onChange={handleKeyUpdate}
71+
borderRadiusConfig={{
72+
bottom: false,
73+
}}
7174
/>
7275
<Textarea
7376
name={`item-value-${index}`}
7477
value={itemValue}
7578
placeholder={valuePlaceholder}
7679
onChange={handleValueUpdate}
7780
disabled={isDisabled}
81+
borderRadiusConfig={{
82+
top: false,
83+
}}
7884
/>
7985
</div>
8086

0 commit comments

Comments
 (0)