mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-11 05:35:25 +03:00
Fix key
This commit is contained in:
parent
5c7d6556c5
commit
7babbb319c
@ -131,7 +131,11 @@ export default function Statusbar() {
|
|||||||
);
|
);
|
||||||
|
|
||||||
if (link) {
|
if (link) {
|
||||||
return <Link to={link}>{message}</Link>;
|
return (
|
||||||
|
<Link key={id} to={link}>
|
||||||
|
{message}
|
||||||
|
</Link>
|
||||||
|
);
|
||||||
} else {
|
} else {
|
||||||
return message;
|
return message;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user