Update RealtimeLog.js

This commit is contained in:
AriaieBOY 2022-09-19 19:28:52 +04:30 committed by GitHub
parent 0cb14f3f6c
commit d8eb22932b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,6 +15,7 @@ import Visitor from 'assets/visitor.svg';
import Eye from 'assets/eye.svg';
import { stringToColor } from 'lib/format';
import { dateFormat } from 'lib/date';
import { safeDecodeURI } from 'next-basics';
import styles from './RealtimeLog.module.css';
const TYPE_ALL = 0;
@ -113,7 +114,7 @@ export default function RealtimeLog({ data, websites, websiteId }) {
target="_blank"
rel="noreferrer noopener"
>
{url}
{safeDecodeURI(url)}
</a>
);
}