Skip to content
This repository was archived by the owner on Jul 9, 2019. It is now read-only.

Commit a17eb82

Browse files
committed
fix: Let labelValue take 100% width
1 parent d17a3c5 commit a17eb82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/edit-list.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ export const EditList = enhance(({
188188
{labels.map((label, i) => {
189189
const labelValue = getValue(label.path, value)
190190

191-
return <TableCell key={i}>
191+
return <TableCell style={{width: '100%'}} key={i}>
192192
<span>{labelValue}</span>
193193
</TableCell>
194194
})}

0 commit comments

Comments
 (0)