Commit 7867383 1 parent d118700 commit 7867383 Copy full SHA for 7867383
File tree 1 file changed +1
-2
lines changed
src/main/webapp/app/pages/apiAccessGroup
1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ import AuthenticationStore from 'app/store/AuthenticationStore';
30
30
import { Linkout } from 'app/shared/links/Linkout' ;
31
31
import { If , Then , Else } from 'react-if' ;
32
32
import { getPageTitle } from 'app/shared/utils/Utils' ;
33
- import { has } from 'app/shared/utils/LodashUtils' ;
34
33
import { Helmet } from 'react-helmet-async' ;
35
34
36
35
type DownloadAvailabilityWithDate = DataRelease & DownloadAvailability ;
@@ -109,7 +108,7 @@ export default class APIAccessPage extends React.Component<{
109
108
// do not provide data on version 1
110
109
return DATA_RELEASES . filter (
111
110
release =>
112
- has ( availableVersions , release . version ) &&
111
+ availableVersions [ release . version ] &&
113
112
! release . version . startsWith ( 'v1' )
114
113
) . reduce ( ( acc , next ) => {
115
114
const currentVersionData : DownloadAvailability =
You can’t perform that action at this time.
0 commit comments