mirror of
https://github.com/umami-software/umami.git
synced 2025-12-08 05:12:36 +01:00
Merge pull request #1115 from briancao/master
Fix 'Unknown' country bug Closes #1102
This commit is contained in:
commit
b1fd4aab47
1 changed files with 1 additions and 2 deletions
|
|
@ -2,7 +2,6 @@ import React from 'react';
|
|||
import Link from 'next/link';
|
||||
import classNames from 'classnames';
|
||||
import usePageQuery from 'hooks/usePageQuery';
|
||||
import { safeDecodeURI } from 'lib/url';
|
||||
import Icon from './Icon';
|
||||
import External from 'assets/arrow-up-right-from-square.svg';
|
||||
import styles from './FilterLink.module.css';
|
||||
|
|
@ -21,7 +20,7 @@ export default function FilterLink({ id, value, label, externalUrl }) {
|
|||
[styles.active]: active && selected,
|
||||
})}
|
||||
>
|
||||
{safeDecodeURI(label || value)}
|
||||
{label || value}
|
||||
</a>
|
||||
</Link>
|
||||
{externalUrl && (
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue