unit tests and finishing touches

This commit is contained in:
fox
2026-06-24 14:18:37 +01:00
parent dd0c586a1f
commit e395a186b7
7 changed files with 247 additions and 3 deletions
+1 -1
View File
@@ -73,7 +73,7 @@ const DetailDisplay = forwardRef((props : {data : SolicitorInfo | 'loading'}) =>
if (props.data === 'loading') {
return (
<Box sx={style}>
Nope
Waiting...
</Box>
);
} else {
+1
View File
@@ -37,6 +37,7 @@ export default function Sidebar(props : SidebarProps) {
<TextField
label='Firm Name'
variant='standard'
sx={{width: '100%'}}
value={props.filters.namePart}
onChange={e => props.onChange(Object.assign({}, {...props.filters}, {namePart: (e.target as any).value}))}
/>