mirror of
https://github.com/plausible/analytics.git
synced 2024-12-21 16:41:31 +03:00
7dbbc8ba22
* Use site id instead of hostname for events * Use site id in domain status check * Revert change to tracking module * Catch more places where link generation needed updating * Rename site_id to domain * Drop hostname index from events
14 lines
501 B
JavaScript
14 lines
501 B
JavaScript
import React from 'react';
|
|
import { Link } from 'react-router-dom'
|
|
|
|
export default function MoreLink({site, endpoint}) {
|
|
return (
|
|
<div className="text-center w-full absolute pin-b pin-l p-4">
|
|
<Link to={`/${encodeURIComponent(site.domain)}/${endpoint}${window.location.search}`}className="font-bold text-sm text-grey-dark hover:text-red transition tracking-wide">
|
|
<svg className="feather mr-1"><use xlinkHref="#feather-maximize" /></svg>
|
|
MORE
|
|
</Link>
|
|
</div>
|
|
)
|
|
}
|