Merge pull request #4408 from urbit/lf/fe-fixes-2

interface: FE fixes
This commit is contained in:
L 2021-02-10 12:42:25 -06:00 committed by GitHub
commit ab0850bf0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -52,7 +52,7 @@ export function Note(props: NoteProps & RouteComponentProps) {
let adminLinks: JSX.Element | null = null;
if (true || window.ship === note?.post?.author) {
if (window.ship === note?.post?.author) {
adminLinks = (
<Box display="inline-block" verticalAlign="middle">
<Link to={`${baseUrl}/edit`}>

View File

@ -110,7 +110,7 @@ export function NewChannel(props: NewChannelProps & RouteComponentProps) {
}
};
const members = group ? Array.from(groups[group]?.members).map(s => `~${s}`) : undefined;
const members = group ? Array.from(groups[group]?.members) : undefined;
return (
<Col overflowY="auto" p={3} backgroundColor="white">
@ -154,7 +154,7 @@ export function NewChannel(props: NewChannelProps & RouteComponentProps) {
name="moduleType"
/>
<IconRadio
icon="Links"
icon="Collection"
label="Collection"
id="link"
name="moduleType"