Skip to content

Commit 3e0cd14

Browse files
Improve value filter rendering in participant grid (#834)
* tmp * Linting --------- Co-authored-by: Dan Coates <[email protected]> Co-authored-by: Michael Franklin <[email protected]>
1 parent d346dc4 commit 3e0cd14

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

web/src/pages/project/ProjectColumnOptions.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ export const ProjectColumnOptions: React.FC<ProjectColumnOptionsProps> = ({
8888
return (
8989
<Segment
9090
key={`project-col-option-${headerGroup}`}
91-
style={{ marginLeft: '10px' }}
91+
style={{ width: '50%' }}
9292
>
9393
<CategoryColumnOptions
9494
category={headerGroup}
@@ -169,6 +169,7 @@ const CategoryColumnOptions: React.FC<{
169169
<table
170170
style={{
171171
border: 'none', // '1px solid black',
172+
width: '100%',
172173
}}
173174
>
174175
<tbody>

web/src/pages/project/ValueFilter.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ export const ValueFilter: React.FC<IValueFilter> = ({
188188
}))}
189189
/>
190190
</Label>
191-
<input />
191+
<input style={{ width: 'auto' }} />
192192
{isHighlighted && (
193193
<Label style={{}}>
194194
<IconButton

0 commit comments

Comments
 (0)