mirror of
https://github.com/urbit/shrub.git
synced 2024-11-28 13:54:20 +03:00
Merge pull request #4117 from urbit/mp/landscape/various
landscape: various regressions
This commit is contained in:
commit
89f603e201
@ -94,7 +94,7 @@ const GraphNodeContent = ({ contents, contacts, mod, description, index, remoteC
|
||||
<Box mb="2" fontWeight="500">
|
||||
<Text>{header}</Text>
|
||||
</Box>
|
||||
<Box overflow="hidden" maxHeight="400px">
|
||||
<Box overflow="hidden" maxHeight="400px" position="relative">
|
||||
<Text lineHeight="tall">{snippet}</Text>
|
||||
<FilterBox
|
||||
width="100%"
|
||||
|
@ -76,7 +76,7 @@ export function ShipSearch(props: InviteSearchProps) {
|
||||
if(ob.isValidPatp(ship)) {
|
||||
checkInput(true, ship);
|
||||
} else {
|
||||
checkInput(ship.length !== 1, undefined)
|
||||
checkInput(ship.length !== 1, undefined)
|
||||
}
|
||||
},
|
||||
[checkInput]
|
||||
@ -90,7 +90,7 @@ export function ShipSearch(props: InviteSearchProps) {
|
||||
(s: string) => {
|
||||
setTouched(true);
|
||||
checkInput(true, undefined);
|
||||
s = `~${deSig(s)}`;
|
||||
s = `${deSig(s)}`;
|
||||
setSelected(v => _.uniq([...v, s]))
|
||||
},
|
||||
[setTouched, checkInput, setSelected]
|
||||
|
@ -127,7 +127,7 @@ export function NewChannel(props: NewChannelProps & RouteComponentProps) {
|
||||
};
|
||||
return (
|
||||
<Col overflowY="auto" p={3}>
|
||||
<Box pb='3' display={['block', 'none']} onClick={() => history.push(props.baseUrl)}>
|
||||
<Box color='black' pb='4' display={['block', 'none']} onClick={() => history.push(props.baseUrl)}>
|
||||
{'<- Back'}
|
||||
</Box>
|
||||
<Box fontWeight="bold" mb={4} color="black">
|
||||
|
Loading…
Reference in New Issue
Block a user