mirror of
https://github.com/urbit/shrub.git
synced 2024-12-21 18:01:32 +03:00
commit
ab0850bf0f
@ -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`}>
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user