Use match

This commit is contained in:
Anon 2022-08-08 16:41:07 -05:00
parent a8ab4e0558
commit dbb5c10da9

View file

@ -581,14 +581,19 @@ export class Modlog extends Component<any, ModlogState> {
) : ( ) : (
<div> <div>
<h5> <h5>
{this.state.communityName.isSome() && ( {
<Link this.state.communityName.match({
className="text-body" some: name => (
to={`/c/${this.state.communityName}`} <Link
> className="text-body"
/c/{this.state.communityName}{" "} to={`/c/${name}`}
</Link> >
)} /c/{name}{" "}
</Link>
),
none: <></>,
})
}
<span>{i18n.t("modlog")}</span> <span>{i18n.t("modlog")}</span>
</h5> </h5>
<form className="form-inline mr-2"> <form className="form-inline mr-2">