mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 09:45:04 +01:00
Merge pull request #438 from gabehab/master
Add link to header title when appropriate
This commit is contained in:
commit
13dddb3764
@ -10,12 +10,21 @@ import Arrow from 'assets/arrow-right.svg';
|
||||
import styles from './WebsiteHeader.module.css';
|
||||
|
||||
export default function WebsiteHeader({ websiteId, title, domain, showLink = false }) {
|
||||
let TitleHeader = showLink ? (
|
||||
<Link href="/website/[...id]" as={`/website/${websiteId}/${title}`}>
|
||||
<Favicon domain={domain} />
|
||||
{title}
|
||||
</Link>
|
||||
) : (
|
||||
<div>
|
||||
<Favicon domain={domain} />
|
||||
{title}
|
||||
</div>
|
||||
);
|
||||
|
||||
return (
|
||||
<PageHeader>
|
||||
<div className={styles.title}>
|
||||
<Favicon domain={domain} />
|
||||
{title}
|
||||
</div>
|
||||
<div className={styles.title}>{TitleHeader}</div>
|
||||
<ActiveUsers className={styles.active} websiteId={websiteId} />
|
||||
<ButtonLayout align="right">
|
||||
<RefreshButton websiteId={websiteId} />
|
||||
|
Loading…
Reference in New Issue
Block a user