mirror of
https://github.com/urbit/shrub.git
synced 2024-12-22 02:11:38 +03:00
commit
ab0850bf0f
@ -52,7 +52,7 @@ export function Note(props: NoteProps & RouteComponentProps) {
|
|||||||
|
|
||||||
|
|
||||||
let adminLinks: JSX.Element | null = null;
|
let adminLinks: JSX.Element | null = null;
|
||||||
if (true || window.ship === note?.post?.author) {
|
if (window.ship === note?.post?.author) {
|
||||||
adminLinks = (
|
adminLinks = (
|
||||||
<Box display="inline-block" verticalAlign="middle">
|
<Box display="inline-block" verticalAlign="middle">
|
||||||
<Link to={`${baseUrl}/edit`}>
|
<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 (
|
return (
|
||||||
<Col overflowY="auto" p={3} backgroundColor="white">
|
<Col overflowY="auto" p={3} backgroundColor="white">
|
||||||
@ -154,7 +154,7 @@ export function NewChannel(props: NewChannelProps & RouteComponentProps) {
|
|||||||
name="moduleType"
|
name="moduleType"
|
||||||
/>
|
/>
|
||||||
<IconRadio
|
<IconRadio
|
||||||
icon="Links"
|
icon="Collection"
|
||||||
label="Collection"
|
label="Collection"
|
||||||
id="link"
|
id="link"
|
||||||
name="moduleType"
|
name="moduleType"
|
||||||
|
Loading…
Reference in New Issue
Block a user