Update lib/ui/src/components/sidebar/RefIndicator.tsx

This commit is contained in:
Michael Shilman 2020-06-25 06:16:39 +08:00 committed by GitHub
parent d73ede836f
commit e4d0d3ff51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -104,7 +104,7 @@ const Version = styled.div({
const CurrentVersion: FunctionComponent<CurrentVersionProps> = ({ url, versions }) => {
const currentVersionId = useMemo(() => {
const c = Object.entries(versions).find(([k, v]) => v === url);
return c && c[0] ? c[0] : 'version';
return c && c[0] ? c[0] : 'current';
}, [url, versions]);
return (