mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-22 14:45:20 +00:00
Use match
This commit is contained in:
parent
a8ab4e0558
commit
dbb5c10da9
|
@ -581,14 +581,19 @@ export class Modlog extends Component<any, ModlogState> {
|
|||
) : (
|
||||
<div>
|
||||
<h5>
|
||||
{this.state.communityName.isSome() && (
|
||||
<Link
|
||||
className="text-body"
|
||||
to={`/c/${this.state.communityName}`}
|
||||
>
|
||||
/c/{this.state.communityName}{" "}
|
||||
</Link>
|
||||
)}
|
||||
{
|
||||
this.state.communityName.match({
|
||||
some: name => (
|
||||
<Link
|
||||
className="text-body"
|
||||
to={`/c/${name}`}
|
||||
>
|
||||
/c/{name}{" "}
|
||||
</Link>
|
||||
),
|
||||
none: <></>,
|
||||
})
|
||||
}
|
||||
<span>{i18n.t("modlog")}</span>
|
||||
</h5>
|
||||
<form className="form-inline mr-2">
|
||||
|
|
Loading…
Reference in a new issue